pub enum WriteFmtError<E> {
FmtError,
Other(E),
}
Expand description
Error returned by Write::write_fmt
Variants§
Trait Implementations§
Source§impl<E: Clone> Clone for WriteFmtError<E>
impl<E: Clone> Clone for WriteFmtError<E>
Source§fn clone(&self) -> WriteFmtError<E>
fn clone(&self) -> WriteFmtError<E>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<E: Debug> Debug for WriteFmtError<E>
impl<E: Debug> Debug for WriteFmtError<E>
Source§impl<E: Debug> Display for WriteFmtError<E>
impl<E: Debug> Display for WriteFmtError<E>
Source§impl<E: Debug> Error for WriteFmtError<E>
Available on crate feature std
only.
impl<E: Debug> Error for WriteFmtError<E>
Available on crate feature
std
only.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<E> From<E> for WriteFmtError<E>
impl<E> From<E> for WriteFmtError<E>
Source§impl<E: PartialEq> PartialEq for WriteFmtError<E>
impl<E: PartialEq> PartialEq for WriteFmtError<E>
impl<E: Copy> Copy for WriteFmtError<E>
impl<E: Eq> Eq for WriteFmtError<E>
impl<E> StructuralPartialEq for WriteFmtError<E>
Auto Trait Implementations§
impl<E> Freeze for WriteFmtError<E>where
E: Freeze,
impl<E> RefUnwindSafe for WriteFmtError<E>where
E: RefUnwindSafe,
impl<E> Send for WriteFmtError<E>where
E: Send,
impl<E> Sync for WriteFmtError<E>where
E: Sync,
impl<E> Unpin for WriteFmtError<E>where
E: Unpin,
impl<E> UnwindSafe for WriteFmtError<E>where
E: 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