Enum bitcoin::util::merkleblock::MerkleBlockError
source · pub enum MerkleBlockError {
MerkleRootMismatch,
NoTransactions,
TooManyTransactions,
BadFormat(String),
}
Expand description
An error when verifying the merkle block
Variants§
MerkleRootMismatch
When header merkle root don’t match to the root calculated from the partial merkle tree
NoTransactions
When partial merkle tree contains no transactions
TooManyTransactions
When there are too many transactions
BadFormat(String)
General format error
Trait Implementations§
source§impl Clone for MerkleBlockError
impl Clone for MerkleBlockError
source§fn clone(&self) -> MerkleBlockError
fn clone(&self) -> MerkleBlockError
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 MerkleBlockError
impl Debug for MerkleBlockError
source§impl PartialEq<MerkleBlockError> for MerkleBlockError
impl PartialEq<MerkleBlockError> for MerkleBlockError
source§fn eq(&self, other: &MerkleBlockError) -> bool
fn eq(&self, other: &MerkleBlockError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for MerkleBlockError
impl StructuralEq for MerkleBlockError
impl StructuralPartialEq for MerkleBlockError
Auto Trait Implementations§
impl RefUnwindSafe for MerkleBlockError
impl Send for MerkleBlockError
impl Sync for MerkleBlockError
impl Unpin for MerkleBlockError
impl UnwindSafe for MerkleBlockError
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