summaryrefslogtreecommitdiff
path: root/src/fuse/mod.rs
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2021-12-29 04:56:41 -0600
committerAlejandro Soto <alejandro@34project.org>2021-12-29 05:20:49 -0600
commit48efcd0ce8c8a9ac51dc80c6ec49c63f6694b031 (patch)
treebdb330a1bb59958ca914be40c906112d25b1eb39 /src/fuse/mod.rs
parent606846f23726c3472e6e12b17447b102ad6158cc (diff)
Implement buffered readdir
Diffstat (limited to 'src/fuse/mod.rs')
-rw-r--r--src/fuse/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fuse/mod.rs b/src/fuse/mod.rs
index 5893d79..5a1bda6 100644
--- a/src/fuse/mod.rs
+++ b/src/fuse/mod.rs
@@ -15,7 +15,7 @@ mod private_trait {
pub trait Sealed {}
}
-pub trait Operation<'o>: private_trait::Sealed {
+pub trait Operation<'o>: private_trait::Sealed + Sized {
type RequestBody: crate::proto::Structured<'o>;
type ReplyTail;
}