struct InboundFetch {
message: Fetch,
state: FetchStateMachine,
unjoinable: Option<u64>,
}Expand description
A fetch the peer opened with FETCH.
Fields§
§message: FetchThe message as it arrived, which is what the application answers from.
state: FetchStateMachineHow far the fetch it opened has got.
unjoinable: Option<u64>The subscription a Joining Fetch named and this session had none live for when the FETCH arrived, which is when the rule about it is read.
Auto Trait Implementations§
impl Freeze for InboundFetch
impl RefUnwindSafe for InboundFetch
impl Send for InboundFetch
impl Sync for InboundFetch
impl Unpin for InboundFetch
impl UnsafeUnpin for InboundFetch
impl UnwindSafe for InboundFetch
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more