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.0fn 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.0fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
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
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more