pub enum Event<PullError, PushError> {
Pulling(WorkerId),
PullError(WorkerId, PullError),
PullProgress(WorkerId, ProgressEntry),
PushError(WorkerId, PushError),
PushProgress(WorkerId, ProgressEntry),
FlushError(PushError),
Finished(WorkerId),
}
Variants§
Pulling(WorkerId)
PullError(WorkerId, PullError)
PullProgress(WorkerId, ProgressEntry)
PushError(WorkerId, PushError)
PushProgress(WorkerId, ProgressEntry)
FlushError(PushError)
Finished(WorkerId)
Trait Implementations§
Auto Trait Implementations§
impl<PullError, PushError> Freeze for Event<PullError, PushError>
impl<PullError, PushError> RefUnwindSafe for Event<PullError, PushError>where
PullError: RefUnwindSafe,
PushError: RefUnwindSafe,
impl<PullError, PushError> Send for Event<PullError, PushError>
impl<PullError, PushError> Sync for Event<PullError, PushError>
impl<PullError, PushError> Unpin for Event<PullError, PushError>
impl<PullError, PushError> UnwindSafe for Event<PullError, PushError>where
PullError: UnwindSafe,
PushError: 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