summaryrefslogtreecommitdiff
path: root/src/fuse/mod.rs
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2021-12-27 02:54:50 -0600
committerAlejandro Soto <alejandro@34project.org>2021-12-28 19:43:45 -0600
commit80fc84344e612a979d1eb048b2c02c41417b36be (patch)
tree28153325b70220b77d8ca91aa41de96d00426a81 /src/fuse/mod.rs
parenta3212a0ba07da7bdae9e17637fbc237e2ae01c08 (diff)
Implement init hook
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 5fe6f46..a4c9f06 100644
--- a/src/fuse/mod.rs
+++ b/src/fuse/mod.rs
@@ -14,7 +14,7 @@ pub mod session;
mod private_trait {
pub trait Operation<'o> {
type RequestBody: crate::proto::Structured<'o>;
- type ReplyTail: Default;
+ type ReplyTail;
}
}