pub enum IdentifyFailure {
Rejected(IdentifyRejection),
WriteFailed,
}Variants§
Rejected(IdentifyRejection)
WriteFailed
Trait Implementations§
Source§impl Clone for IdentifyFailure
impl Clone for IdentifyFailure
Source§fn clone(&self) -> IdentifyFailure
fn clone(&self) -> IdentifyFailure
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 IdentifyFailure
Source§impl Debug for IdentifyFailure
impl Debug for IdentifyFailure
impl Eq for IdentifyFailure
Source§impl From<&IdentifyFailure> for RuntimeOperationOutcome
impl From<&IdentifyFailure> for RuntimeOperationOutcome
Source§fn from(failure: &IdentifyFailure) -> Self
fn from(failure: &IdentifyFailure) -> Self
Converts to this type from the input type.
Source§impl PartialEq for IdentifyFailure
impl PartialEq for IdentifyFailure
impl StructuralPartialEq for IdentifyFailure
Auto Trait Implementations§
impl Freeze for IdentifyFailure
impl RefUnwindSafe for IdentifyFailure
impl Send for IdentifyFailure
impl Sync for IdentifyFailure
impl Unpin for IdentifyFailure
impl UnsafeUnpin for IdentifyFailure
impl UnwindSafe for IdentifyFailure
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