Enum bitcoin::block::Bip34Error
source · #[non_exhaustive]pub enum Bip34Error {
Unsupported,
NotPresent,
UnexpectedPush(Vec<u8>),
NegativeHeight,
}
Expand description
An error when looking up a BIP34 block height.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unsupported
The block does not support BIP34 yet.
NotPresent
No push was present where the BIP34 push was expected.
UnexpectedPush(Vec<u8>)
The BIP34 push was larger than 8 bytes.
NegativeHeight
The BIP34 push was negative.
Trait Implementations§
source§impl Clone for Bip34Error
impl Clone for Bip34Error
source§fn clone(&self) -> Bip34Error
fn clone(&self) -> Bip34Error
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 Bip34Error
impl Debug for Bip34Error
source§impl Display for Bip34Error
impl Display for Bip34Error
source§impl Error for Bip34Error
impl Error for Bip34Error
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<Infallible> for Bip34Error
impl From<Infallible> for Bip34Error
source§fn from(never: Infallible) -> Self
fn from(never: Infallible) -> Self
Converts to this type from the input type.
source§impl PartialEq<Bip34Error> for Bip34Error
impl PartialEq<Bip34Error> for Bip34Error
source§fn eq(&self, other: &Bip34Error) -> bool
fn eq(&self, other: &Bip34Error) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for Bip34Error
impl StructuralEq for Bip34Error
impl StructuralPartialEq for Bip34Error
Auto Trait Implementations§
impl RefUnwindSafe for Bip34Error
impl Send for Bip34Error
impl Sync for Bip34Error
impl Unpin for Bip34Error
impl UnwindSafe for Bip34Error
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