pub enum StashingError {
Save(i32, String),
Pop(i32, String),
}
Expand description
Error during stashing operation
Variants§
Trait Implementations§
Source§impl Debug for StashingError
impl Debug for StashingError
Source§impl Display for StashingError
impl Display for StashingError
Source§impl Error for StashingError
impl Error for StashingError
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 Freeze for StashingError
impl RefUnwindSafe for StashingError
impl Send for StashingError
impl Sync for StashingError
impl Unpin for StashingError
impl UnwindSafe for StashingError
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