pub enum WitnessingError {
AuthBaseNotFound,
CheckpointInvalid,
CheckpointTooDeep(usize),
PositionNotMarked(Position),
BridgeFusionError(ContinuityError),
BridgeAddressInvalid(Address),
}Expand description
Errors that can be discovered during the process of attempting to create the witness for a leaf node.
Variants§
AuthBaseNotFound
CheckpointInvalid
CheckpointTooDeep(usize)
PositionNotMarked(Position)
BridgeFusionError(ContinuityError)
BridgeAddressInvalid(Address)
Trait Implementations§
Source§impl Clone for WitnessingError
impl Clone for WitnessingError
Source§fn clone(&self) -> WitnessingError
fn clone(&self) -> WitnessingError
Returns a duplicate 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 WitnessingError
impl Debug for WitnessingError
Source§impl PartialEq for WitnessingError
impl PartialEq for WitnessingError
impl Eq for WitnessingError
impl StructuralPartialEq for WitnessingError
Auto Trait Implementations§
impl Freeze for WitnessingError
impl RefUnwindSafe for WitnessingError
impl Send for WitnessingError
impl Sync for WitnessingError
impl Unpin for WitnessingError
impl UnwindSafe for WitnessingError
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