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