pub enum SendResourceFailure {
Rejected(SendResourceRejection),
WriteFailed,
RejectedByPeer,
Sequencing,
Timeout,
PredecessorFailed,
}Variants§
Rejected(SendResourceRejection)
WriteFailed
RejectedByPeer
The receiver sent RESOURCE_RCL; RNS 1.4.2 Resource._rejected.
Sequencing
Timeout
PredecessorFailed
The staged continuation was never advertised, so no wire cancel rides out with this settlement.
Trait Implementations§
Source§impl Clone for SendResourceFailure
impl Clone for SendResourceFailure
Source§fn clone(&self) -> SendResourceFailure
fn clone(&self) -> SendResourceFailure
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 SendResourceFailure
Source§impl Debug for SendResourceFailure
impl Debug for SendResourceFailure
impl Eq for SendResourceFailure
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 PartialEq for SendResourceFailure
impl PartialEq for SendResourceFailure
impl StructuralPartialEq for SendResourceFailure
Auto Trait Implementations§
impl Freeze for SendResourceFailure
impl RefUnwindSafe for SendResourceFailure
impl Send for SendResourceFailure
impl Sync for SendResourceFailure
impl Unpin for SendResourceFailure
impl UnsafeUnpin for SendResourceFailure
impl UnwindSafe for SendResourceFailure
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