summaryrefslogtreecommitdiff
path: root/examples (follow)
AgeCommit message (Collapse)Author
2022-01-06Implement SymlinkAlejandro Soto
2022-01-05Implement LinkAlejandro Soto
2022-01-05Implement UnlinkAlejandro Soto
2022-01-05Implement RmdirAlejandro Soto
2022-01-05Implement MkdirAlejandro Soto
2022-01-05Refactor impls of Reply as individual traitsAlejandro Soto
2022-01-04Remove use of individual ops in ext2 exampleAlejandro Soto
2022-01-04Implement unmountAlejandro Soto
2022-01-04Add example: passthroughAlejandro Soto
2022-01-03Replace Reply::fallible() with Reply::and_then()Alejandro Soto
This new API is more general on the error type. It also preserves the error value with a dedicated tuple struct io::Failed. This introduces a new trait io::Finish that may be used in the future for similar purposes.
2022-01-03Split io::Known into io::Known and io::StatAlejandro Soto
2022-01-03Fix ctime which is change (not creation) timeAlejandro Soto
2022-01-03Split Attrs::block_size() from Attrs::blocks()Alejandro Soto
2021-12-29Refactor FsInfo APIAlejandro Soto
2021-12-29Implement buffered readdirAlejandro Soto
2021-12-28Rename TimeToLive as TtlAlejandro Soto
2021-12-28Handle destroy requestsAlejandro Soto
This is a temporary fix for what appears to be a Tokio issue. See tokio-rs/tokio#4349.
2021-12-28Implement init hookAlejandro Soto
2021-12-28Redesign the API around a user-provided main loopAlejandro Soto
This is basically a full library rewrite.
2021-12-24Fix old warningsAlejandro Soto
2021-12-24Update dependenciesAlejandro Soto
2021-12-23Initial commitAlejandro Soto
I started this project on February 2021, but postponed further development until now. The only modification introduced since then is try_trait_v2 (try_trait no longer exists).