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