Enum bdk_chain::bitcoin::error::PrefixedHexError
pub enum PrefixedHexError {
MissingPrefix(MissingPrefixError),
ParseInt(ParseIntError),
}
Expand description
Error returned when parsing integer from an supposedly prefixed hex string for a type that can be created infallibly from an integer.
Variants§
MissingPrefix(MissingPrefixError)
Hex string is missing prefix.
ParseInt(ParseIntError)
Error parsing integer from hex string.
Trait Implementations§
§impl Clone for PrefixedHexError
impl Clone for PrefixedHexError
§fn clone(&self) -> PrefixedHexError
fn clone(&self) -> PrefixedHexError
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 more§impl Debug for PrefixedHexError
impl Debug for PrefixedHexError
§impl Display for PrefixedHexError
impl Display for PrefixedHexError
§impl Error for PrefixedHexError
impl Error for PrefixedHexError
§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()
§impl From<MissingPrefixError> for PrefixedHexError
impl From<MissingPrefixError> for PrefixedHexError
§fn from(e: MissingPrefixError) -> PrefixedHexError
fn from(e: MissingPrefixError) -> PrefixedHexError
Converts to this type from the input type.
§impl From<ParseIntError> for PrefixedHexError
impl From<ParseIntError> for PrefixedHexError
§fn from(e: ParseIntError) -> PrefixedHexError
fn from(e: ParseIntError) -> PrefixedHexError
Converts to this type from the input type.
§impl PartialEq for PrefixedHexError
impl PartialEq for PrefixedHexError
§fn eq(&self, other: &PrefixedHexError) -> bool
fn eq(&self, other: &PrefixedHexError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for PrefixedHexError
impl StructuralPartialEq for PrefixedHexError
Auto Trait Implementations§
impl Freeze for PrefixedHexError
impl RefUnwindSafe for PrefixedHexError
impl Send for PrefixedHexError
impl Sync for PrefixedHexError
impl Unpin for PrefixedHexError
impl UnwindSafe for PrefixedHexError
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more