pub enum InboundGateError {
NotParticipantFrame {
frame_type: u8,
},
ParticipantRejected(ParticipantTransportRejected),
}Expand description
Result category for failures before or during the participant inbound gate.
A non-participant outer frame is returned separately so the caller can preserve the generic transport’s unknown-frame behavior. It is never converted into a participant transport rejection.
Variants§
NotParticipantFrame
The generic outer type is not the participant frame type.
ParticipantRejected(ParticipantTransportRejected)
One of the five exact participant transport rejection schemas.
Trait Implementations§
Source§impl Clone for InboundGateError
impl Clone for InboundGateError
Source§fn clone(&self) -> InboundGateError
fn clone(&self) -> InboundGateError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InboundGateError
impl Debug for InboundGateError
impl Eq for InboundGateError
Source§impl PartialEq for InboundGateError
impl PartialEq for InboundGateError
impl StructuralPartialEq for InboundGateError
Auto Trait Implementations§
impl Freeze for InboundGateError
impl RefUnwindSafe for InboundGateError
impl Send for InboundGateError
impl Sync for InboundGateError
impl Unpin for InboundGateError
impl UnsafeUnpin for InboundGateError
impl UnwindSafe for InboundGateError
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