summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-01-06Implement BmapAlejandro Soto
2022-01-06Implement CreateAlejandro Soto
2022-01-06Move Forget and Getattr to new module ops::inodeAlejandro Soto
2022-01-06Implement Fsync/FsyncdirAlejandro Soto
2022-01-06Implement SymlinkAlejandro Soto
2022-01-05Implement LinkAlejandro Soto
2022-01-05Rename ReplyTail as ReplyStateAlejandro Soto
2022-01-05Implement UnlinkAlejandro Soto
2022-01-05Implement RmdirAlejandro Soto
2022-01-05Implement MkdirAlejandro Soto
2022-01-05Refactor impls of Request as individual traitsAlejandro Soto
2022-01-05Refactor impls of Reply as individual traitsAlejandro Soto
2022-01-04Replace quick-error with thiserrorAlejandro Soto
2022-01-04Move error types to new module crate::errorAlejandro Soto
2022-01-04Move crate::fuse::* to the top-levelAlejandro Soto
2022-01-04Remove client.rsAlejandro Soto
2022-01-04Remove use of individual ops in ext2 exampleAlejandro Soto
2022-01-04Split crate::fuse::ops into submodulesAlejandro Soto
2022-01-04Replace the op! macro in ops.rs with manual implsAlejandro Soto
2022-01-04Implement unmountAlejandro Soto
2022-01-04Remove Session::proto_minorAlejandro Soto
2022-01-04Remove usermount_fdAlejandro Soto
2022-01-04Add example: passthroughAlejandro Soto
2022-01-03Fix forget requests (it was expecting proto::ForgetOne instead of ↵Alejandro Soto
proto::ForgetIn)
2022-01-03Implement flush operationAlejandro Soto
2022-01-03Implement Timestamp::new()Alejandro Soto
2022-01-03Generalize (AsRef<OsStr>) Reply::target() for ReadlinkAlejandro 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-03Add Attrs::device()Alejandro Soto
2022-01-03Remove #[feature(doc_cfg)]Alejandro Soto
2022-01-03Fix ctime which is change (not creation) timeAlejandro Soto
2022-01-03Split Attrs::block_size() from Attrs::blocks()Alejandro Soto
2022-01-02Prepare for releaseAlejandro Soto
2022-01-02Remove unused feature flagsAlejandro Soto
2021-12-30Add xattr filesystem callsAlejandro Soto
2021-12-30Enforce common init flagsAlejandro Soto
2021-12-30Add Reply::flags() for OpenAlejandro Soto
2021-12-30Fix use semantics of Incoming<'o, O>::owned()Alejandro Soto
Lifetime requirements involving Done<'o> previously prevented any proper use of Owned<O>.
2021-12-29Add missing dispatch variantsAlejandro Soto
2021-12-29Make Reply::ok_with_handle() publicAlejandro Soto
2021-12-29Mark Reply as #[must_use]Alejandro Soto
2021-12-29Add Reply::ok() for Release/ReleasedirAlejandro Soto
2021-12-29Refactor FsInfo APIAlejandro Soto
2021-12-29Make Ino derive Ord/PartialOrdAlejandro Soto
2021-12-29Implement Reply::slice() for ReadAlejandro Soto
2021-12-29Implement Reply::all() for WriteAlejandro Soto
2021-12-29Implement buffered readdirAlejandro Soto
2021-12-28Add missing request accessorsAlejandro Soto
2021-12-28Add Ttl::NULLAlejandro Soto