pub enum DerivationPathError {
InvalidDerivationPath(String),
Infallible,
}
Expand description
Derivation path error.
Variants§
Trait Implementations§
source§impl Clone for DerivationPathError
impl Clone for DerivationPathError
source§fn clone(&self) -> DerivationPathError
fn clone(&self) -> DerivationPathError
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 DerivationPathError
impl Debug for DerivationPathError
source§impl Display for DerivationPathError
impl Display for DerivationPathError
source§impl Error for DerivationPathError
impl Error for DerivationPathError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<Infallible> for DerivationPathError
impl From<Infallible> for DerivationPathError
source§fn from(_: Infallible) -> Self
fn from(_: Infallible) -> Self
Converts to this type from the input type.
source§impl PartialEq<DerivationPathError> for DerivationPathError
impl PartialEq<DerivationPathError> for DerivationPathError
source§fn eq(&self, other: &DerivationPathError) -> bool
fn eq(&self, other: &DerivationPathError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.