pub enum ClientInboundDecision {
Applied(ClientInboundApplied),
Refused(ClientInboundRefusal),
}Expand description
Exhaustive inbound correlation decision.
Variants§
Applied(ClientInboundApplied)
The crate correlated and applied the typed value.
Refused(ClientInboundRefusal)
The crate retained both authority and value unchanged.
Trait Implementations§
Source§impl Debug for ClientInboundDecision
impl Debug for ClientInboundDecision
impl Eq for ClientInboundDecision
Source§impl PartialEq for ClientInboundDecision
impl PartialEq for ClientInboundDecision
impl StructuralPartialEq for ClientInboundDecision
Auto Trait Implementations§
impl Freeze for ClientInboundDecision
impl RefUnwindSafe for ClientInboundDecision
impl Send for ClientInboundDecision
impl Sync for ClientInboundDecision
impl Unpin for ClientInboundDecision
impl UnsafeUnpin for ClientInboundDecision
impl UnwindSafe for ClientInboundDecision
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