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§
Source§impl<T, E: Debug> Debug for TryChunksError<T, E>
impl<T, E: Debug> Debug for TryChunksError<T, E>
Source§impl<T, E: Display> Display for TryChunksError<T, E>
impl<T, E: Display> Display for TryChunksError<T, E>
Source§impl<T: PartialEq, E: PartialEq> PartialEq for TryChunksError<T, E>
impl<T: PartialEq, E: PartialEq> PartialEq for TryChunksError<T, E>
impl<T: Eq, E: Eq> Eq for TryChunksError<T, E>
impl<T, E> StructuralPartialEq for TryChunksError<T, E>
Auto Trait Implementations§
impl<T, E> Freeze for TryChunksError<T, E>where
E: Freeze,
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> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more