pub enum RedoubtOptionError {
Empty,
}Expand description
Error type for RedoubtOption operations.
Variants§
Empty
Attempted to access value when option is empty.
Trait Implementations§
Source§impl Debug for RedoubtOptionError
impl Debug for RedoubtOptionError
Source§impl Display for RedoubtOptionError
impl Display for RedoubtOptionError
Source§impl Error for RedoubtOptionError
impl Error for RedoubtOptionError
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()
Source§impl PartialEq for RedoubtOptionError
impl PartialEq for RedoubtOptionError
impl Eq for RedoubtOptionError
impl StructuralPartialEq for RedoubtOptionError
Auto Trait Implementations§
impl Freeze for RedoubtOptionError
impl RefUnwindSafe for RedoubtOptionError
impl Send for RedoubtOptionError
impl Sync for RedoubtOptionError
impl Unpin for RedoubtOptionError
impl UnwindSafe for RedoubtOptionError
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