diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-01-02 04:04:41 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-01-02 04:08:43 -0600 |
| commit | ed5baeafd6eab65541f7b639e593cf23712e93f2 (patch) | |
| tree | d90e5b278e0a58a66d77193b95be7cd5a383ac28 /src/fuse | |
| parent | d6dead36761f4731951026f48bc3a8d83260b9e5 (diff) | |
Remove unused feature flags
Diffstat (limited to 'src/fuse')
| -rw-r--r-- | src/fuse/mod.rs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/fuse/mod.rs b/src/fuse/mod.rs index b4c31d0..2e20972 100644 --- a/src/fuse/mod.rs +++ b/src/fuse/mod.rs @@ -2,13 +2,8 @@ use crate::proto; use std::marker::PhantomData; pub mod io; - -#[doc(cfg(feature = "server"))] -pub mod ops; - -#[doc(cfg(feature = "mount"))] pub mod mount; - +pub mod ops; pub mod session; mod private_trait { @@ -22,13 +17,11 @@ pub trait Operation<'o>: private_trait::Sealed + Sized { pub type Op<'o, O = ops::Any> = (Request<'o, O>, Reply<'o, O>); -#[doc(cfg(feature = "server"))] pub struct Request<'o, O: Operation<'o>> { header: proto::InHeader, body: O::RequestBody, } -#[doc(cfg(feature = "server"))] #[must_use] pub struct Reply<'o, O: Operation<'o>> { session: &'o session::Session, @@ -37,7 +30,6 @@ pub struct Reply<'o, O: Operation<'o>> { } #[must_use] -#[doc(cfg(feature = "server"))] pub struct Done<'o>(PhantomData<&'o mut &'o ()>); impl Done<'_> { |
