pub struct CollectError<T, U> { /* private fields */ }Expand description
Errors returned from Collect future.
Implementations§
Source§impl<T, U> CollectError<T, U>
impl<T, U> CollectError<T, U>
Sourcepub fn is_stream_err(&self) -> bool
pub fn is_stream_err(&self) -> bool
Returns true if the error was caused by polling the stream.
Sourcepub fn is_collect_err(&self) -> bool
pub fn is_collect_err(&self) -> bool
Returns true if the error happened while collecting the data.
Trait Implementations§
Auto Trait Implementations§
impl<T, U> Freeze for CollectError<T, U>
impl<T, U> RefUnwindSafe for CollectError<T, U>where
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<T, U> Send for CollectError<T, U>
impl<T, U> Sync for CollectError<T, U>
impl<T, U> Unpin for CollectError<T, U>
impl<T, U> UnwindSafe for CollectError<T, U>where
T: UnwindSafe,
U: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more