pub enum SendToLinkFailure {
Rejected(SendToLinkRejection),
WriteFailed(LinkDataError),
Culled,
Timeout,
}Variants§
Trait Implementations§
Source§impl Clone for SendToLinkFailure
impl Clone for SendToLinkFailure
Source§fn clone(&self) -> SendToLinkFailure
fn clone(&self) -> SendToLinkFailure
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 SendToLinkFailure
Source§impl Debug for SendToLinkFailure
impl Debug for SendToLinkFailure
impl Eq for SendToLinkFailure
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 PartialEq for SendToLinkFailure
impl PartialEq for SendToLinkFailure
impl StructuralPartialEq for SendToLinkFailure
Auto Trait Implementations§
impl Freeze for SendToLinkFailure
impl RefUnwindSafe for SendToLinkFailure
impl Send for SendToLinkFailure
impl Sync for SendToLinkFailure
impl Unpin for SendToLinkFailure
impl UnsafeUnpin for SendToLinkFailure
impl UnwindSafe for SendToLinkFailure
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