summaryrefslogtreecommitdiff
path: root/src/fuse/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/fuse/mod.rs10
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<'_> {