Struct bitcoin::error::MissingPrefixError
source · pub struct MissingPrefixError { /* private fields */ }
Expand description
Error when hex string is missing a prefix (e.g. 0x).
Trait Implementations§
source§impl Clone for MissingPrefixError
impl Clone for MissingPrefixError
source§fn clone(&self) -> MissingPrefixError
fn clone(&self) -> MissingPrefixError
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 MissingPrefixError
impl Debug for MissingPrefixError
source§impl Display for MissingPrefixError
impl Display for MissingPrefixError
source§impl Error for MissingPrefixError
impl Error for MissingPrefixError
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<MissingPrefixError> for PrefixedHexError
impl From<MissingPrefixError> for PrefixedHexError
source§fn from(e: MissingPrefixError) -> Self
fn from(e: MissingPrefixError) -> Self
Converts to this type from the input type.
source§impl PartialEq<MissingPrefixError> for MissingPrefixError
impl PartialEq<MissingPrefixError> for MissingPrefixError
source§fn eq(&self, other: &MissingPrefixError) -> bool
fn eq(&self, other: &MissingPrefixError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for MissingPrefixError
impl StructuralEq for MissingPrefixError
impl StructuralPartialEq for MissingPrefixError
Auto Trait Implementations§
impl RefUnwindSafe for MissingPrefixError
impl Send for MissingPrefixError
impl Sync for MissingPrefixError
impl Unpin for MissingPrefixError
impl UnwindSafe for MissingPrefixError
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