Enum embedded_io::blocking::ReadExactError
source · [−]pub enum ReadExactError<E> {
UnexpectedEof,
Other(E),
}Expand description
Error returned by Read::read_exact
Variants
UnexpectedEof
An EOF error was encountered before reading the exact amount of requested bytes.
Other(E)
Error returned by the inner Read.
Trait Implementations
sourceimpl<E: Clone> Clone for ReadExactError<E>
impl<E: Clone> Clone for ReadExactError<E>
sourcefn clone(&self) -> ReadExactError<E>
fn clone(&self) -> ReadExactError<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 ReadExactError<E>
impl<E: Debug> Debug for ReadExactError<E>
sourceimpl<E> Format for ReadExactError<E> where
E: Format,
impl<E> Format for ReadExactError<E> where
E: Format,
sourceimpl<E: PartialEq> PartialEq<ReadExactError<E>> for ReadExactError<E>
impl<E: PartialEq> PartialEq<ReadExactError<E>> for ReadExactError<E>
sourcefn eq(&self, other: &ReadExactError<E>) -> bool
fn eq(&self, other: &ReadExactError<E>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ReadExactError<E>) -> bool
fn ne(&self, other: &ReadExactError<E>) -> bool
This method tests for !=.
impl<E: Copy> Copy for ReadExactError<E>
impl<E: Eq> Eq for ReadExactError<E>
impl<E> StructuralEq for ReadExactError<E>
impl<E> StructuralPartialEq for ReadExactError<E>
Auto Trait Implementations
impl<E> RefUnwindSafe for ReadExactError<E> where
E: RefUnwindSafe,
impl<E> Send for ReadExactError<E> where
E: Send,
impl<E> Sync for ReadExactError<E> where
E: Sync,
impl<E> Unpin for ReadExactError<E> where
E: Unpin,
impl<E> UnwindSafe for ReadExactError<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