pub enum CollectorError {
TaskJoin(JoinError),
}Expand description
Errors that can occur when collecting stream data.
Variants§
Trait Implementations§
Source§impl Debug for CollectorError
impl Debug for CollectorError
Source§impl Display for CollectorError
impl Display for CollectorError
Source§impl Error for CollectorError
impl Error for CollectorError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<CollectorError> for WaitError
impl From<CollectorError> for WaitError
Source§fn from(source: CollectorError) -> Self
fn from(source: CollectorError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CollectorError
impl !RefUnwindSafe for CollectorError
impl Send for CollectorError
impl Sync for CollectorError
impl Unpin for CollectorError
impl !UnwindSafe for CollectorError
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