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 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 SecretKeyFromStrError
impl Debug for SecretKeyFromStrError
Source§impl PartialEq for SecretKeyFromStrError
impl PartialEq for SecretKeyFromStrError
impl StructuralPartialEq for SecretKeyFromStrError
Auto Trait Implementations§
impl Freeze for SecretKeyFromStrError
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