Enum miniscript::descriptor::ConversionError
source · pub enum ConversionError {
HardenedChild,
MultiKey,
}
Expand description
Descriptor key conversion error
Variants§
HardenedChild
Attempted to convert a key with hardened derivations to a bitcoin public key
MultiKey
Attempted to convert a key with multiple derivation paths to a bitcoin public key
Trait Implementations§
source§impl Clone for ConversionError
impl Clone for ConversionError
source§fn clone(&self) -> ConversionError
fn clone(&self) -> ConversionError
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 ConversionError
impl Debug for ConversionError
source§impl Display for ConversionError
impl Display for ConversionError
source§impl Error for ConversionError
impl Error for ConversionError
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 Hash for ConversionError
impl Hash for ConversionError
source§impl Ord for ConversionError
impl Ord for ConversionError
source§fn cmp(&self, other: &ConversionError) -> Ordering
fn cmp(&self, other: &ConversionError) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<ConversionError> for ConversionError
impl PartialEq<ConversionError> for ConversionError
source§fn eq(&self, other: &ConversionError) -> bool
fn eq(&self, other: &ConversionError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ConversionError> for ConversionError
impl PartialOrd<ConversionError> for ConversionError
source§fn partial_cmp(&self, other: &ConversionError) -> Option<Ordering>
fn partial_cmp(&self, other: &ConversionError) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for ConversionError
impl Eq for ConversionError
impl StructuralEq for ConversionError
impl StructuralPartialEq for ConversionError
Auto Trait Implementations§
impl RefUnwindSafe for ConversionError
impl Send for ConversionError
impl Sync for ConversionError
impl Unpin for ConversionError
impl UnwindSafe for ConversionError
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