pub enum StatefulBackendError {
InvalidInternalState,
Other(Error),
}
Variants§
Trait Implementations§
Source§impl Debug for StatefulBackendError
impl Debug for StatefulBackendError
Source§impl Display for StatefulBackendError
impl Display for StatefulBackendError
Source§impl Error for StatefulBackendError
impl Error for StatefulBackendError
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 From<Error> for StatefulBackendError
impl From<Error> for StatefulBackendError
Source§impl From<StatefulBackendError> for EncodeError
impl From<StatefulBackendError> for EncodeError
Source§fn from(source: StatefulBackendError) -> Self
fn from(source: StatefulBackendError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StatefulBackendError
impl RefUnwindSafe for StatefulBackendError
impl Send for StatefulBackendError
impl Sync for StatefulBackendError
impl Unpin for StatefulBackendError
impl UnwindSafe for StatefulBackendError
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