pub enum MerkleTreeError {
TooFewLeaves(usize, usize),
NumberOfLeavesNotPowerOfTwo(usize),
LeafIndexOutOfBounds(usize, usize),
DuplicateLeafIndex,
TooFewLeafIndexes,
TooManyLeafIndexes(usize, usize),
InvalidProof,
}Expand description
Defines errors which can occur when using Merkle trees.
Variants§
TooFewLeaves(usize, usize)
Fewer than two leaves were used to construct a Merkle tree.
NumberOfLeavesNotPowerOfTwo(usize)
Number of leaves for a Merkle tree was not a power of two.
LeafIndexOutOfBounds(usize, usize)
A leaf index was greater than or equal to the number of leaves in the tree.
DuplicateLeafIndex
A leaf index was included more than once in the list of indexes for a batch proof.
TooFewLeafIndexes
No leaf indexes were provided for a batch Merkle proof.
TooManyLeafIndexes(usize, usize)
Too many leaf index were provided for a batch Merkle proof.
InvalidProof
Merkle proof is not valid for the specified position(s).
Trait Implementations§
Source§impl Debug for MerkleTreeError
impl Debug for MerkleTreeError
Source§impl Display for MerkleTreeError
impl Display for MerkleTreeError
Source§impl Error for MerkleTreeError
impl Error for MerkleTreeError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 for MerkleTreeError
impl PartialEq for MerkleTreeError
impl Eq for MerkleTreeError
impl StructuralPartialEq for MerkleTreeError
Auto Trait Implementations§
impl Freeze for MerkleTreeError
impl RefUnwindSafe for MerkleTreeError
impl Send for MerkleTreeError
impl Sync for MerkleTreeError
impl Unpin for MerkleTreeError
impl UnwindSafe for MerkleTreeError
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