Enum embedded_io::blocking::WriteFmtError
source · [−]pub enum WriteFmtError<E> {
FmtError,
Other(E),
}Expand description
Error returned by Write::write_fmt
Variants
FmtError
An error was encountered while formatting.
Other(E)
Error returned by the inner Write.
Trait Implementations
sourceimpl<E: Clone> Clone for WriteFmtError<E>
impl<E: Clone> Clone for WriteFmtError<E>
sourcefn clone(&self) -> WriteFmtError<E>
fn clone(&self) -> WriteFmtError<E>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<E: Debug> Debug for WriteFmtError<E>
impl<E: Debug> Debug for WriteFmtError<E>
sourceimpl<E> Format for WriteFmtError<E> where
E: Format,
impl<E> Format for WriteFmtError<E> where
E: Format,
sourceimpl<E: PartialEq> PartialEq<WriteFmtError<E>> for WriteFmtError<E>
impl<E: PartialEq> PartialEq<WriteFmtError<E>> for WriteFmtError<E>
sourcefn eq(&self, other: &WriteFmtError<E>) -> bool
fn eq(&self, other: &WriteFmtError<E>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &WriteFmtError<E>) -> bool
fn ne(&self, other: &WriteFmtError<E>) -> bool
This method tests for !=.
impl<E: Copy> Copy for WriteFmtError<E>
impl<E: Eq> Eq for WriteFmtError<E>
impl<E> StructuralEq for WriteFmtError<E>
impl<E> StructuralPartialEq for WriteFmtError<E>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more