pub struct RecoveryError {
pub message: String,
}
Expand description
Error created when recovery fails
Fields§
§message: String
Trait Implementations§
Source§impl Debug for RecoveryError
impl Debug for RecoveryError
Source§impl Display for RecoveryError
impl Display for RecoveryError
Source§impl From<&str> for RecoveryError
impl From<&str> for RecoveryError
Source§fn from(error: &str) -> RecoveryError
fn from(error: &str) -> RecoveryError
Converts to this type from the input type.
Source§impl From<Error> for RecoveryError
impl From<Error> for RecoveryError
Source§fn from(error: Error) -> RecoveryError
fn from(error: Error) -> RecoveryError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RecoveryError
impl RefUnwindSafe for RecoveryError
impl Send for RecoveryError
impl Sync for RecoveryError
impl Unpin for RecoveryError
impl UnwindSafe for RecoveryError
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