pub enum VerkleError {
InvalidData(String),
CryptoError(String),
SerializationError(String),
IoError(Error),
}Expand description
Errors that can occur in verkle trie operations
Variants§
Trait Implementations§
Source§impl Debug for VerkleError
impl Debug for VerkleError
Source§impl Display for VerkleError
impl Display for VerkleError
Source§impl Error for VerkleError
impl Error for VerkleError
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§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for VerkleError
impl !RefUnwindSafe for VerkleError
impl Send for VerkleError
impl Sync for VerkleError
impl Unpin for VerkleError
impl !UnwindSafe for VerkleError
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more