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/lib.rs | |
| parent | ce320da58d2917789815bc4dafe15a9b47a9df65 (diff) | |
Rename ReplyTail as ReplyState
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -27,7 +27,7 @@ mod util; pub trait Operation<'o>: private_trait::Sealed + Sized { type RequestBody: crate::proto::Structured<'o>; - type ReplyTail; + type ReplyState; } pub type Op<'o, O = ops::Any> = (Request<'o, O>, Reply<'o, O>); @@ -41,7 +41,7 @@ pub struct Request<'o, O: Operation<'o>> { pub struct Reply<'o, O: Operation<'o>> { session: &'o session::Session, unique: u64, - tail: O::ReplyTail, + state: O::ReplyState, } /// Inode number. |
