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<SecretKeyFromStrError> for SecretKeyFromStrError
impl PartialEq<SecretKeyFromStrError> 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 ==
.