Struct futures_util::stream::TryChunksError
source · [−]pub struct TryChunksError<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
sourceimpl<T, E: Debug> Debug for TryChunksError<T, E>
impl<T, E: Debug> Debug for TryChunksError<T, E>
sourceimpl<T, E: Display> Display for TryChunksError<T, E>
impl<T, E: Display> Display for TryChunksError<T, E>
sourceimpl<T, E: Debug + Display> Error for TryChunksError<T, E>
impl<T, E: Debug + Display> Error for TryChunksError<T, E>
1.30.0 · sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl<T: PartialEq, E: PartialEq> PartialEq<TryChunksError<T, E>> for TryChunksError<T, E>
impl<T: PartialEq, E: PartialEq> PartialEq<TryChunksError<T, E>> for TryChunksError<T, E>
sourcefn eq(&self, other: &TryChunksError<T, E>) -> bool
fn eq(&self, other: &TryChunksError<T, E>) -> bool
impl<T: Eq, E: Eq> Eq for TryChunksError<T, E>
impl<T, E> StructuralEq for TryChunksError<T, E>
impl<T, E> StructuralPartialEq for TryChunksError<T, E>
Auto Trait Implementations
impl<T, E> RefUnwindSafe for TryChunksError<T, E>where
E: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, E> Send for TryChunksError<T, E>where
E: Send,
T: Send,
impl<T, E> Sync for TryChunksError<T, E>where
E: Sync,
T: Sync,
impl<T, E> Unpin for TryChunksError<T, E>where
E: Unpin,
T: Unpin,
impl<T, E> UnwindSafe for TryChunksError<T, E>where
E: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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