type TryChunksStreamError<St> = TryChunksError<<St as TryStream>::Ok, <St as TryStream>::Error>;

Aliased Type§

struct TryChunksStreamError<St>(pub Vec<<St as TryStream>::Ok, Global>, pub <St as TryStream>::Error);

Fields§

§0: Vec<<St as TryStream>::Ok, Global>§1: <St as TryStream>::Error

Trait Implementations§

source§

impl<T, E: Debug> Debug for TryChunksError<T, E>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, E: Display> Display for TryChunksError<T, E>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, E: Debug + Display> Error for TryChunksError<T, E>

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl<T: PartialEq, E: PartialEq> PartialEq<TryChunksError<T, E>> for TryChunksError<T, E>

source§

fn eq(&self, other: &TryChunksError<T, E>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: Eq, E: Eq> Eq for TryChunksError<T, E>

source§

impl<T, E> StructuralEq for TryChunksError<T, E>

source§

impl<T, E> StructuralPartialEq for TryChunksError<T, E>