Enum embedded_svc::io::asynch::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 for ReadExactError<E>where
E: Clone,
impl<E> Clone for ReadExactError<E>where
E: Clone,
source§fn clone(&self) -> ReadExactError<E>
fn clone(&self) -> ReadExactError<E>
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<E> Debug for ReadExactError<E>where
E: Debug,
impl<E> Debug for ReadExactError<E>where
E: Debug,
source§impl<E> Display for ReadExactError<E>where
E: Debug,
impl<E> Display for ReadExactError<E>where
E: Debug,
source§impl<E> Error for ReadExactError<E>where
E: Debug,
impl<E> Error for ReadExactError<E>where
E: Debug,
1.30.0§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§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 ReadExactError<E>
impl<E> From<E> for ReadExactError<E>
source§fn from(err: E) -> ReadExactError<E>
fn from(err: E) -> ReadExactError<E>
Converts to this type from the input type.
source§impl<E> PartialEq for ReadExactError<E>where
E: PartialEq,
impl<E> PartialEq for ReadExactError<E>where
E: PartialEq,
source§fn 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 ==
.impl<E> Copy for ReadExactError<E>where
E: Copy,
impl<E> Eq for ReadExactError<E>where
E: Eq,
impl<E> StructuralPartialEq for ReadExactError<E>
Auto Trait Implementations§
impl<E> Freeze for ReadExactError<E>where
E: Freeze,
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§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)