pub struct ProgressWriteError(/* private fields */);Expand description
The error returned when Progress::write_to fails.
Though the implementation details are hidden, the struct implements std::error::Error
and a human-friendly std::fmt::Display implementation.
Trait Implementations§
Source§impl Debug for ProgressWriteError
impl Debug for ProgressWriteError
Source§impl Display for ProgressWriteError
impl Display for ProgressWriteError
Source§impl Error for ProgressWriteError
impl Error for ProgressWriteError
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 !RefUnwindSafe for ProgressWriteError
impl !UnwindSafe for ProgressWriteError
impl Freeze for ProgressWriteError
impl Send for ProgressWriteError
impl Sync for ProgressWriteError
impl Unpin for ProgressWriteError
impl UnsafeUnpin for ProgressWriteError
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