Struct bitcoin::address::UnknownAddressTypeError
source · pub struct UnknownAddressTypeError(pub String);
Expand description
Address type is either invalid or not supported in rust-bitcoin.
Tuple Fields§
§0: String
Trait Implementations§
source§impl Clone for UnknownAddressTypeError
impl Clone for UnknownAddressTypeError
source§fn clone(&self) -> UnknownAddressTypeError
fn clone(&self) -> UnknownAddressTypeError
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 UnknownAddressTypeError
impl Debug for UnknownAddressTypeError
source§impl Display for UnknownAddressTypeError
impl Display for UnknownAddressTypeError
source§impl Error for UnknownAddressTypeError
impl Error for UnknownAddressTypeError
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 PartialEq<UnknownAddressTypeError> for UnknownAddressTypeError
impl PartialEq<UnknownAddressTypeError> for UnknownAddressTypeError
source§fn eq(&self, other: &UnknownAddressTypeError) -> bool
fn eq(&self, other: &UnknownAddressTypeError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for UnknownAddressTypeError
impl StructuralEq for UnknownAddressTypeError
impl StructuralPartialEq for UnknownAddressTypeError
Auto Trait Implementations§
impl RefUnwindSafe for UnknownAddressTypeError
impl Send for UnknownAddressTypeError
impl Sync for UnknownAddressTypeError
impl Unpin for UnknownAddressTypeError
impl UnwindSafe for UnknownAddressTypeError
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