Struct bdk_chain::bitcoin::address::error::UnknownHrpError
#[non_exhaustive]pub struct UnknownHrpError(pub String);
Expand description
Unknown HRP error.
Tuple Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.0: String
Trait Implementations§
§impl Clone for UnknownHrpError
impl Clone for UnknownHrpError
§fn clone(&self) -> UnknownHrpError
fn clone(&self) -> UnknownHrpError
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 UnknownHrpError
impl Debug for UnknownHrpError
§impl Display for UnknownHrpError
impl Display for UnknownHrpError
§impl Error for UnknownHrpError
impl Error for UnknownHrpError
§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<UnknownHrpError> for ParseError
impl From<UnknownHrpError> for ParseError
§fn from(e: UnknownHrpError) -> ParseError
fn from(e: UnknownHrpError) -> ParseError
Converts to this type from the input type.
§impl PartialEq for UnknownHrpError
impl PartialEq for UnknownHrpError
§fn eq(&self, other: &UnknownHrpError) -> bool
fn eq(&self, other: &UnknownHrpError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for UnknownHrpError
impl StructuralPartialEq for UnknownHrpError
Auto Trait Implementations§
impl Freeze for UnknownHrpError
impl RefUnwindSafe for UnknownHrpError
impl Send for UnknownHrpError
impl Sync for UnknownHrpError
impl Unpin for UnknownHrpError
impl UnwindSafe for UnknownHrpError
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