pub enum HexToArrayError {
InvalidChar(InvalidCharError),
InvalidLength(InvalidLengthError),
}Expand description
Hex decoding error.
Variants§
InvalidChar(InvalidCharError)
Non-hexadecimal character.
InvalidLength(InvalidLengthError)
Tried to parse fixed-length hash from a string with the wrong length.
Trait Implementations§
Source§impl Clone for HexToArrayError
impl Clone for HexToArrayError
Source§fn clone(&self) -> HexToArrayError
fn clone(&self) -> HexToArrayError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HexToArrayError
impl Debug for HexToArrayError
Source§impl Display for HexToArrayError
impl Display for HexToArrayError
Source§impl Error for HexToArrayError
Available on crate feature std only.
impl Error for HexToArrayError
Available on crate feature
std only.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<HexToArrayError> for Error
impl From<HexToArrayError> for Error
Source§fn from(err: HexToArrayError) -> Error
fn from(err: HexToArrayError) -> Error
Converts to this type from the input type.
Source§impl From<HexToArrayError> for ParseCompressedPublicKeyError
impl From<HexToArrayError> for ParseCompressedPublicKeyError
Source§fn from(e: HexToArrayError) -> ParseCompressedPublicKeyError
fn from(e: HexToArrayError) -> ParseCompressedPublicKeyError
Converts to this type from the input type.
Source§impl From<InvalidCharError> for HexToArrayError
impl From<InvalidCharError> for HexToArrayError
Source§fn from(e: InvalidCharError) -> HexToArrayError
fn from(e: InvalidCharError) -> HexToArrayError
Converts to this type from the input type.
Source§impl From<InvalidLengthError> for HexToArrayError
impl From<InvalidLengthError> for HexToArrayError
Source§fn from(e: InvalidLengthError) -> HexToArrayError
fn from(e: InvalidLengthError) -> HexToArrayError
Converts to this type from the input type.
Source§impl PartialEq for HexToArrayError
impl PartialEq for HexToArrayError
impl Eq for HexToArrayError
impl StructuralPartialEq for HexToArrayError
Auto Trait Implementations§
impl Freeze for HexToArrayError
impl RefUnwindSafe for HexToArrayError
impl Send for HexToArrayError
impl Sync for HexToArrayError
impl Unpin for HexToArrayError
impl UnwindSafe for HexToArrayError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.