pub enum ArmourError {
Show 16 variants
FromBytesError,
BytesLenError,
TryFromSliceError(TryFromSliceError),
NonZeroError,
NonZero(TryFromIntError),
ParseInt(ParseIntError),
RapiraError(RapiraError),
EnumFromU8(EnumFromU8Error),
ZBaseDecodeError,
HexDecodeError,
UnknownError,
HashIndexExist,
IdDecodeError,
ZerocopyValidityError,
FromUtf8Error(FromUtf8Error),
Utf8Error(Utf8Error),
}Variants§
FromBytesError
BytesLenError
TryFromSliceError(TryFromSliceError)
NonZeroError
NonZero(TryFromIntError)
ParseInt(ParseIntError)
RapiraError(RapiraError)
EnumFromU8(EnumFromU8Error)
ZBaseDecodeError
HexDecodeError
UnknownError
HashIndexExist
IdDecodeError
ZerocopyValidityError
FromUtf8Error(FromUtf8Error)
Utf8Error(Utf8Error)
Trait Implementations§
Source§impl Debug for ArmourError
impl Debug for ArmourError
Source§impl Display for ArmourError
impl Display for ArmourError
Source§impl Error for ArmourError
impl Error for ArmourError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<EnumFromU8Error> for ArmourError
impl From<EnumFromU8Error> for ArmourError
Source§fn from(source: EnumFromU8Error) -> Self
fn from(source: EnumFromU8Error) -> Self
Converts to this type from the input type.
Source§impl From<FromUtf8Error> for ArmourError
impl From<FromUtf8Error> for ArmourError
Source§fn from(source: FromUtf8Error) -> Self
fn from(source: FromUtf8Error) -> Self
Converts to this type from the input type.
Source§impl From<ParseIntError> for ArmourError
impl From<ParseIntError> for ArmourError
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Source§impl From<RapiraError> for ArmourError
impl From<RapiraError> for ArmourError
Source§fn from(source: RapiraError) -> Self
fn from(source: RapiraError) -> Self
Converts to this type from the input type.
Source§impl From<TryFromIntError> for ArmourError
impl From<TryFromIntError> for ArmourError
Source§fn from(source: TryFromIntError) -> Self
fn from(source: TryFromIntError) -> Self
Converts to this type from the input type.
Source§impl From<TryFromSliceError> for ArmourError
impl From<TryFromSliceError> for ArmourError
Source§fn from(source: TryFromSliceError) -> Self
fn from(source: TryFromSliceError) -> Self
Converts to this type from the input type.
Source§impl From<Utf8Error> for ArmourError
impl From<Utf8Error> for ArmourError
Source§impl<S, D: TryFromBytes> From<ValidityError<S, D>> for ArmourError
impl<S, D: TryFromBytes> From<ValidityError<S, D>> for ArmourError
Source§fn from(_: ValidityError<S, D>) -> Self
fn from(_: ValidityError<S, D>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ArmourError
impl !RefUnwindSafe for ArmourError
impl Send for ArmourError
impl Sync for ArmourError
impl Unpin for ArmourError
impl UnsafeUnpin for ArmourError
impl !UnwindSafe for ArmourError
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