pub enum IgnoreReason {
Show 25 variants
Consumed,
Malformed,
UnhandledContext,
Duplicate,
Superseded,
NotForUs,
NoRoute,
HopLimitReached,
LoopPrevented,
RouteUnresponsive,
OtherInstance,
UnknownLink,
LinkPhaseMismatch,
LinkRttError(LinkRttError),
DecryptFailed,
ProofInvalid,
UnknownIdentity,
LinkRequestsRefused,
PermissionDenied,
RateLimited,
CapacityExhausted,
RequestTooLarge,
StrategyDeclined,
UnmatchedResponse,
IfacRefused,
}Variants§
Consumed
Malformed
UnhandledContext
Duplicate
Superseded
NotForUs
NoRoute
HopLimitReached
LoopPrevented
RouteUnresponsive
OtherInstance
UnknownLink
LinkPhaseMismatch
LinkRttError(LinkRttError)
DecryptFailed
ProofInvalid
UnknownIdentity
LinkRequestsRefused
Link requests are disabled for the destination.
PermissionDenied
RateLimited
CapacityExhausted
RequestTooLarge
StrategyDeclined
The app’s declared acceptance policy declined an offer that was well-formed and deliverable.
UnmatchedResponse
A resource response advertisement has no matching pending request.
IfacRefused
Trait Implementations§
Source§impl Clone for IgnoreReason
impl Clone for IgnoreReason
Source§fn clone(&self) -> IgnoreReason
fn clone(&self) -> IgnoreReason
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 IgnoreReason
Source§impl Debug for IgnoreReason
impl Debug for IgnoreReason
impl Eq for IgnoreReason
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 IgnoreReason
impl PartialEq for IgnoreReason
impl StructuralPartialEq for IgnoreReason
Auto Trait Implementations§
impl Freeze for IgnoreReason
impl RefUnwindSafe for IgnoreReason
impl Send for IgnoreReason
impl Sync for IgnoreReason
impl Unpin for IgnoreReason
impl UnsafeUnpin for IgnoreReason
impl UnwindSafe for IgnoreReason
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