pub struct OverflowError<L: Display + Debug, R: Display + Debug> { /* private fields */ }
Trait Implementations§
Source§impl<L, R> Display for OverflowError<L, R>
impl<L, R> Display for OverflowError<L, R>
Source§impl<L: Display + Debug, R: Display + Debug> Error for OverflowError<L, R>
impl<L: Display + Debug, R: Display + Debug> Error for OverflowError<L, R>
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<L, R> Freeze for OverflowError<L, R>
impl<L, R> RefUnwindSafe for OverflowError<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for OverflowError<L, R>
impl<L, R> Sync for OverflowError<L, R>
impl<L, R> Unpin for OverflowError<L, R>
impl<L, R> UnwindSafe for OverflowError<L, R>where
L: UnwindSafe,
R: UnwindSafe,
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