pub enum IdentityTypeError {
Unknown(IdentityType),
}
Expand description
Error in IdentityType
.
Variants§
Unknown(IdentityType)
Expected identity type 0, got this identity type instead.
Trait Implementations§
source§impl Debug for IdentityTypeError
impl Debug for IdentityTypeError
source§impl From<IdentityTypeError> for FromSliceIdentityTypeError
impl From<IdentityTypeError> for FromSliceIdentityTypeError
source§fn from(err: IdentityTypeError) -> Self
fn from(err: IdentityTypeError) -> Self
Converts to this type from the input type.
source§impl From<IdentityTypeError> for FromStrIdentityError
impl From<IdentityTypeError> for FromStrIdentityError
source§fn from(err: IdentityTypeError) -> Self
fn from(err: IdentityTypeError) -> Self
Converts to this type from the input type.
source§impl From<IdentityTypeError> for FromStrIdentityTypeError
impl From<IdentityTypeError> for FromStrIdentityTypeError
source§fn from(err: IdentityTypeError) -> Self
fn from(err: IdentityTypeError) -> Self
Converts to this type from the input type.
source§impl From<IdentityTypeError> for IdentityError
impl From<IdentityTypeError> for IdentityError
source§fn from(err: IdentityTypeError) -> Self
fn from(err: IdentityTypeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IdentityTypeError
impl RefUnwindSafe for IdentityTypeError
impl Send for IdentityTypeError
impl Sync for IdentityTypeError
impl Unpin for IdentityTypeError
impl UnwindSafe for IdentityTypeError
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