#[repr(u8)]pub enum RuntimeOperationOutcome {
Succeeded = 0,
Rejected = 1,
WriteFailed = 2,
Timeout = 3,
Culled = 4,
PeerRejected = 5,
Sequencing = 6,
DependencyFailed = 7,
Backpressure = 8,
Untrackable = 9,
ResponseTooLarge = 10,
}Variants§
Succeeded = 0
Rejected = 1
WriteFailed = 2
Timeout = 3
Culled = 4
PeerRejected = 5
Sequencing = 6
DependencyFailed = 7
Backpressure = 8
Untrackable = 9
ResponseTooLarge = 10
Implementations§
Trait Implementations§
Source§impl Clone for RuntimeOperationOutcome
impl Clone for RuntimeOperationOutcome
Source§fn clone(&self) -> RuntimeOperationOutcome
fn clone(&self) -> RuntimeOperationOutcome
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 RuntimeOperationOutcome
Source§impl Debug for RuntimeOperationOutcome
impl Debug for RuntimeOperationOutcome
impl Eq for RuntimeOperationOutcome
Source§impl From<&AllowRequesterFailure> for RuntimeOperationOutcome
impl From<&AllowRequesterFailure> for RuntimeOperationOutcome
Source§fn from(failure: &AllowRequesterFailure) -> Self
fn from(failure: &AllowRequesterFailure) -> Self
Converts to this type from the input type.
Source§impl From<&AnnounceNowFailure> for RuntimeOperationOutcome
impl From<&AnnounceNowFailure> for RuntimeOperationOutcome
Source§fn from(failure: &AnnounceNowFailure) -> Self
fn from(failure: &AnnounceNowFailure) -> Self
Converts to this type from the input type.
Source§impl From<&CloseLinkFailure> for RuntimeOperationOutcome
impl From<&CloseLinkFailure> for RuntimeOperationOutcome
Source§fn from(failure: &CloseLinkFailure) -> Self
fn from(failure: &CloseLinkFailure) -> Self
Converts to this type from the input type.
Source§impl From<&EstablishLinkFailure> for RuntimeOperationOutcome
impl From<&EstablishLinkFailure> for RuntimeOperationOutcome
Source§fn from(failure: &EstablishLinkFailure) -> Self
fn from(failure: &EstablishLinkFailure) -> Self
Converts to this type from the input type.
Source§impl From<&IdentifyFailure> for RuntimeOperationOutcome
impl From<&IdentifyFailure> for RuntimeOperationOutcome
Source§fn from(failure: &IdentifyFailure) -> Self
fn from(failure: &IdentifyFailure) -> Self
Converts to this type from the input type.
Source§impl From<&RequestPathFailure> for RuntimeOperationOutcome
impl From<&RequestPathFailure> for RuntimeOperationOutcome
Source§fn from(failure: &RequestPathFailure) -> Self
fn from(failure: &RequestPathFailure) -> Self
Converts to this type from the input type.
Source§impl From<&RespondFailure> for RuntimeOperationOutcome
impl From<&RespondFailure> for RuntimeOperationOutcome
Source§fn from(failure: &RespondFailure) -> Self
fn from(failure: &RespondFailure) -> Self
Converts to this type from the input type.
Source§impl From<&SendGroupFailure> for RuntimeOperationOutcome
impl From<&SendGroupFailure> for RuntimeOperationOutcome
Source§fn from(failure: &SendGroupFailure) -> Self
fn from(failure: &SendGroupFailure) -> Self
Converts to this type from the input type.
Source§impl From<&SendRequestFailure> for RuntimeOperationOutcome
impl From<&SendRequestFailure> for RuntimeOperationOutcome
Source§fn from(failure: &SendRequestFailure) -> Self
fn from(failure: &SendRequestFailure) -> Self
Converts to this type from the input type.
Source§impl From<&SendResourceFailure> for RuntimeOperationOutcome
impl From<&SendResourceFailure> for RuntimeOperationOutcome
Source§fn from(failure: &SendResourceFailure) -> Self
fn from(failure: &SendResourceFailure) -> Self
Converts to this type from the input type.
Source§impl From<&SendSinglePacketFailure> for RuntimeOperationOutcome
impl From<&SendSinglePacketFailure> for RuntimeOperationOutcome
Source§fn from(failure: &SendSinglePacketFailure) -> Self
fn from(failure: &SendSinglePacketFailure) -> Self
Converts to this type from the input type.
Source§impl From<&SendToChannelFailure> for RuntimeOperationOutcome
impl From<&SendToChannelFailure> for RuntimeOperationOutcome
Source§fn from(failure: &SendToChannelFailure) -> Self
fn from(failure: &SendToChannelFailure) -> Self
Converts to this type from the input type.
Source§impl From<&SendToLinkFailure> for RuntimeOperationOutcome
impl From<&SendToLinkFailure> for RuntimeOperationOutcome
Source§fn from(failure: &SendToLinkFailure) -> Self
fn from(failure: &SendToLinkFailure) -> Self
Converts to this type from the input type.
Source§impl From<&SetResourceStrategyFailure> for RuntimeOperationOutcome
impl From<&SetResourceStrategyFailure> for RuntimeOperationOutcome
Source§fn from(failure: &SetResourceStrategyFailure) -> Self
fn from(failure: &SetResourceStrategyFailure) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RuntimeOperationOutcome
impl PartialEq for RuntimeOperationOutcome
impl StructuralPartialEq for RuntimeOperationOutcome
Auto Trait Implementations§
impl Freeze for RuntimeOperationOutcome
impl RefUnwindSafe for RuntimeOperationOutcome
impl Send for RuntimeOperationOutcome
impl Sync for RuntimeOperationOutcome
impl Unpin for RuntimeOperationOutcome
impl UnsafeUnpin for RuntimeOperationOutcome
impl UnwindSafe for RuntimeOperationOutcome
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