pub enum SecretKeyFromStrError {
HexMalformed(FromHexError),
KeyInvalid(SecretKeyError),
}Variants§
HexMalformed(FromHexError)
KeyInvalid(SecretKeyError)
Trait Implementations§
source§impl Clone for SecretKeyFromStrError
impl Clone for SecretKeyFromStrError
source§fn clone(&self) -> SecretKeyFromStrError
fn clone(&self) -> SecretKeyFromStrError
Returns a copy 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 SecretKeyFromStrError
impl Debug for SecretKeyFromStrError
source§impl PartialEq for SecretKeyFromStrError
impl PartialEq for SecretKeyFromStrError
source§fn 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 ==.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§
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