pub enum ReadExactError<E> {
Other(E),
UnexpectedEnd,
}Expand description
Error that might occur when reading exact amount of bytes.
Variants§
Other(E)
Low-level error happened.
UnexpectedEnd
Reader reached end unexpectedly.
Usually EOF, closed connection, etc.
Trait Implementations§
Source§impl<E: Debug> Debug for ReadExactError<E>
impl<E: Debug> Debug 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§
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