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