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: PartialEq, E: PartialEq> PartialEq for TryReadyChunksError<T, E>
impl<T: PartialEq, E: PartialEq> PartialEq for TryReadyChunksError<T, E>
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>where
E: Send,
T: Send,
impl<T, E> Sync for TryReadyChunksError<T, E>where
E: Sync,
T: Sync,
impl<T, E> Unpin for TryReadyChunksError<T, E>where
E: Unpin,
T: Unpin,
impl<T, E> UnwindSafe for TryReadyChunksError<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