pub enum SecretKeyFromStrError {
HexMalformed(FromHexError),
KeyInvalid(SecretKeyError),
}
Variants
HexMalformed(FromHexError)
KeyInvalid(SecretKeyError)
Trait Implementations
sourceimpl Clone for SecretKeyFromStrError
impl Clone for SecretKeyFromStrError
sourcefn clone(&self) -> SecretKeyFromStrError
fn clone(&self) -> SecretKeyFromStrError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SecretKeyFromStrError
impl Debug for SecretKeyFromStrError
sourceimpl PartialEq<SecretKeyFromStrError> for SecretKeyFromStrError
impl PartialEq<SecretKeyFromStrError> for SecretKeyFromStrError
sourcefn eq(&self, other: &SecretKeyFromStrError) -> bool
fn eq(&self, other: &SecretKeyFromStrError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SecretKeyFromStrError) -> bool
fn ne(&self, other: &SecretKeyFromStrError) -> bool
This method tests for !=
.
impl StructuralPartialEq for SecretKeyFromStrError
Auto Trait Implementations
impl RefUnwindSafe for SecretKeyFromStrError
impl Send for SecretKeyFromStrError
impl Sync for SecretKeyFromStrError
impl Unpin for SecretKeyFromStrError
impl UnwindSafe for SecretKeyFromStrError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more