Struct futures_util::stream::TryReadyChunksError
source · pub struct TryReadyChunksError<T, E>(pub Vec<T>, pub E);
Expand description
Error indicating, that while chunk was collected inner stream produced an error.
Contains all items that were collected before an error occurred, and the stream error itself.
Tuple Fields§
§0: Vec<T>
§1: E
Trait Implementations§
source§impl<T, E: Debug> Debug for TryReadyChunksError<T, E>
impl<T, E: Debug> Debug for TryReadyChunksError<T, E>
source§impl<T, E: Display> Display for TryReadyChunksError<T, E>
impl<T, E: Display> Display for TryReadyChunksError<T, E>
source§impl<T, E: Debug + Display> Error for TryReadyChunksError<T, E>
impl<T, E: Debug + Display> Error for TryReadyChunksError<T, 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()
source§impl<T: PartialEq, E: PartialEq> PartialEq for TryReadyChunksError<T, E>
impl<T: PartialEq, E: PartialEq> PartialEq for TryReadyChunksError<T, E>
source§fn eq(&self, other: &TryReadyChunksError<T, E>) -> bool
fn eq(&self, other: &TryReadyChunksError<T, E>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<T: Eq, E: Eq> Eq for TryReadyChunksError<T, E>
impl<T, E> StructuralPartialEq for TryReadyChunksError<T, E>
Auto Trait Implementations§
impl<T, E> Freeze for TryReadyChunksError<T, E>where
E: Freeze,
impl<T, E> RefUnwindSafe for TryReadyChunksError<T, E>where
E: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, E> Send for TryReadyChunksError<T, E>
impl<T, E> Sync for TryReadyChunksError<T, E>
impl<T, E> Unpin for TryReadyChunksError<T, E>
impl<T, E> UnwindSafe for TryReadyChunksError<T, E>where
E: UnwindSafe,
T: 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