Struct futures::stream::TryChunksError
source · [−]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, Global>
1: E
Trait Implementations
sourceimpl<T, E> Debug for TryChunksError<T, E> where
E: Debug,
impl<T, E> Debug for TryChunksError<T, E> where
E: Debug,
sourceimpl<T, E> Display for TryChunksError<T, E> where
E: Display,
impl<T, E> Display for TryChunksError<T, E> where
E: Display,
sourceimpl<T, E> Error for TryChunksError<T, E> where
E: Debug + Display,
impl<T, E> Error for TryChunksError<T, E> where
E: Debug + Display,
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
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. 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, E> PartialEq<TryChunksError<T, E>> for TryChunksError<T, E> where
T: PartialEq<T>,
E: PartialEq<E>,
impl<T, E> PartialEq<TryChunksError<T, E>> for TryChunksError<T, E> where
T: PartialEq<T>,
E: PartialEq<E>,
sourcefn eq(&self, other: &TryChunksError<T, E>) -> bool
fn eq(&self, other: &TryChunksError<T, E>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &TryChunksError<T, E>) -> bool
fn ne(&self, other: &TryChunksError<T, E>) -> bool
This method tests for !=
.
impl<T, E> Eq for TryChunksError<T, E> where
T: Eq,
E: Eq,
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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