pub enum ClientCorrelatedInboundDecision {
Applied(ClientInboundApplied),
AppliedRetaining(ClientCorrelatedInboundRetained),
Refused(ClientCorrelatedInboundRefusal),
}Expand description
Inbound decision for response classes whose wire envelopes omit request identity.
Variants§
Applied(ClientInboundApplied)
The exact local operation authorization and wire envelope both matched; the correlation is spent.
AppliedRetaining(ClientCorrelatedInboundRetained)
The value applied without answering the outstanding operation; the correlation is handed back because the answer is still owed.
Refused(ClientCorrelatedInboundRefusal)
Aggregate, value, and correlation were retained unchanged.
Trait Implementations§
Auto Trait Implementations§
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