Enum bdk_chain::bitcoin::blockdata::block::Bip34Error
#[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§
§impl Clone for Bip34Error
impl Clone for Bip34Error
§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 more§impl Debug for Bip34Error
impl Debug for Bip34Error
§impl Display for Bip34Error
impl Display for Bip34Error
§impl Error for Bip34Error
impl Error for Bip34Error
§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<Infallible> for Bip34Error
impl From<Infallible> for Bip34Error
§fn from(never: Infallible) -> Bip34Error
fn from(never: Infallible) -> Bip34Error
Converts to this type from the input type.
§impl PartialEq for Bip34Error
impl PartialEq for Bip34Error
§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 StructuralPartialEq for Bip34Error
Auto Trait Implementations§
impl Freeze for Bip34Error
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
§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