diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-01-05 07:37:31 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-01-05 07:37:31 -0600 |
| commit | fe2ec80b262e6457b896f23ec91e4fe9da4b8117 (patch) | |
| tree | 662c5590405f894d144f3a63f9d5a0a210f3b558 /src/ops/entry.rs | |
| parent | ce320da58d2917789815bc4dafe15a9b47a9df65 (diff) | |
Rename ReplyTail as ReplyState
Diffstat (limited to 'src/ops/entry.rs')
| -rw-r--r-- | src/ops/entry.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ops/entry.rs b/src/ops/entry.rs index 2998281..4f0b76f 100644 --- a/src/ops/entry.rs +++ b/src/ops/entry.rs @@ -43,27 +43,27 @@ impl<'o> Operation<'o> for Forget { { proto::Opcode::BatchForget as u32 }, >; - type ReplyTail = (); + type ReplyState = (); } impl<'o> Operation<'o> for Getattr { type RequestBody = &'o proto::GetattrIn; - type ReplyTail = (); + type ReplyState = (); } impl<'o> Operation<'o> for Mkdir { type RequestBody = (&'o proto::MkdirIn, &'o CStr); - type ReplyTail = (); + type ReplyState = (); } impl<'o> Operation<'o> for Unlink { type RequestBody = &'o CStr; // name() - type ReplyTail = (); + type ReplyState = (); } impl<'o> Operation<'o> for Rmdir { type RequestBody = &'o CStr; // name() - type ReplyTail = (); + type ReplyState = (); } impl<'o> RequestForget<'o> for Forget { |
