pub enum MerkleProofError {
BoundaryQuotientError(usize),
RandomizerError,
TransitionZerofierError,
}
Variants
BoundaryQuotientError(usize)
RandomizerError
TransitionZerofierError
Trait Implementations
sourceimpl Debug for MerkleProofError
impl Debug for MerkleProofError
sourceimpl PartialEq<MerkleProofError> for MerkleProofError
impl PartialEq<MerkleProofError> for MerkleProofError
sourcefn eq(&self, other: &MerkleProofError) -> bool
fn eq(&self, other: &MerkleProofError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MerkleProofError) -> bool
fn ne(&self, other: &MerkleProofError) -> bool
This method tests for !=
.
impl Eq for MerkleProofError
impl StructuralEq for MerkleProofError
impl StructuralPartialEq for MerkleProofError
Auto Trait Implementations
impl RefUnwindSafe for MerkleProofError
impl Send for MerkleProofError
impl Sync for MerkleProofError
impl Unpin for MerkleProofError
impl UnwindSafe for MerkleProofError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more