pub enum ProofTypeError {
WrongDigestLength(usize),
}Variants§
Trait Implementations§
Source§impl Clone for ProofTypeError
impl Clone for ProofTypeError
Source§fn clone(&self) -> ProofTypeError
fn clone(&self) -> ProofTypeError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProofTypeError
impl Debug for ProofTypeError
Source§impl Display for ProofTypeError
impl Display for ProofTypeError
impl Eq for ProofTypeError
Source§impl Error for ProofTypeError
impl Error for ProofTypeError
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 ProofTypeError
impl PartialEq for ProofTypeError
impl StructuralPartialEq for ProofTypeError
Auto Trait Implementations§
impl Freeze for ProofTypeError
impl RefUnwindSafe for ProofTypeError
impl Send for ProofTypeError
impl Sync for ProofTypeError
impl Unpin for ProofTypeError
impl UnsafeUnpin for ProofTypeError
impl UnwindSafe for ProofTypeError
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