#[repr(u8)]pub enum IgnoreReasonKind {
Show 27 variants
Consumed = 0,
Malformed = 1,
UnhandledContext = 2,
Duplicate = 3,
Superseded = 4,
NotForUs = 5,
NoRoute = 6,
HopLimitReached = 7,
LoopPrevented = 8,
RouteUnresponsive = 9,
OtherInstance = 10,
UnknownLink = 11,
LinkPhaseMismatch = 12,
LinkRttMalformed = 13,
LinkRttInvalidToken = 14,
LinkRttBufferTooShort = 15,
DecryptFailed = 16,
ProofInvalid = 17,
UnknownIdentity = 18,
LinkRequestsRefused = 19,
PermissionDenied = 20,
RateLimited = 21,
CapacityExhausted = 22,
StrategyDeclined = 23,
UnmatchedResponse = 24,
IfacRefused = 25,
RequestTooLarge = 26,
}Variants§
Consumed = 0
Malformed = 1
UnhandledContext = 2
Duplicate = 3
Superseded = 4
NotForUs = 5
NoRoute = 6
HopLimitReached = 7
LoopPrevented = 8
RouteUnresponsive = 9
OtherInstance = 10
UnknownLink = 11
LinkPhaseMismatch = 12
LinkRttMalformed = 13
LinkRttInvalidToken = 14
LinkRttBufferTooShort = 15
DecryptFailed = 16
ProofInvalid = 17
UnknownIdentity = 18
LinkRequestsRefused = 19
PermissionDenied = 20
RateLimited = 21
CapacityExhausted = 22
StrategyDeclined = 23
UnmatchedResponse = 24
IfacRefused = 25
RequestTooLarge = 26
Implementations§
Source§impl IgnoreReasonKind
impl IgnoreReasonKind
pub const ALL: [IgnoreReasonKind; 26]
Trait Implementations§
Source§impl Clone for IgnoreReasonKind
impl Clone for IgnoreReasonKind
Source§fn clone(&self) -> IgnoreReasonKind
fn clone(&self) -> IgnoreReasonKind
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 moreimpl Copy for IgnoreReasonKind
Source§impl Debug for IgnoreReasonKind
impl Debug for IgnoreReasonKind
impl Eq for IgnoreReasonKind
Source§impl From<IgnoreReason> for IgnoreReasonKind
impl From<IgnoreReason> for IgnoreReasonKind
Source§fn from(reason: IgnoreReason) -> IgnoreReasonKind
fn from(reason: IgnoreReason) -> IgnoreReasonKind
Converts to this type from the input type.
Source§impl PartialEq for IgnoreReasonKind
impl PartialEq for IgnoreReasonKind
impl StructuralPartialEq for IgnoreReasonKind
Auto Trait Implementations§
impl Freeze for IgnoreReasonKind
impl RefUnwindSafe for IgnoreReasonKind
impl Send for IgnoreReasonKind
impl Sync for IgnoreReasonKind
impl Unpin for IgnoreReasonKind
impl UnsafeUnpin for IgnoreReasonKind
impl UnwindSafe for IgnoreReasonKind
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