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/mod.rs | |
| parent | ce320da58d2917789815bc4dafe15a9b47a9df65 (diff) | |
Rename ReplyTail as ReplyState
Diffstat (limited to '')
| -rw-r--r-- | src/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ mod private_trait { 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>); @@ -26,7 +26,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, } #[must_use] |
