pub struct Error<A = System>where
A: Allocator,{ /* private fields */ }Expand description
Error raised during storage encoding.
Trait Implementations§
Source§impl<A> ContextError<A> for Error<A>where
A: Allocator,
impl<A> ContextError<A> for Error<A>where
A: Allocator,
Source§impl<A> Error for Error<A>where
A: Allocator,
impl<A> Error for Error<A>where
A: Allocator,
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()
Auto Trait Implementations§
impl<A> Freeze for Error<A>
impl<A> RefUnwindSafe for Error<A>
impl<A> Send for Error<A>
impl<A> Sync for Error<A>
impl<A> Unpin for Error<A>
impl<A> UnwindSafe for Error<A>
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