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§
source§impl<E: Clone> Clone for ReadExactError<E>
impl<E: Clone> Clone for ReadExactError<E>
source§fn clone(&self) -> ReadExactError<E>
fn clone(&self) -> ReadExactError<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 ReadExactError<E>
impl<E: Debug> Debug for ReadExactError<E>
source§impl<E: Debug> Display for ReadExactError<E>
impl<E: Debug> Display for ReadExactError<E>
source§impl<E: Debug> Error for ReadExactError<E>
impl<E: Debug> Error for ReadExactError<E>
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()