pub enum Event<PullError, PushError> {
Pulling(usize),
PullError(usize, PullError),
PullProgress(usize, Range<u64>),
PushError(usize, PushError),
PushProgress(usize, Range<u64>),
FlushError(PushError),
Finished(usize),
}Variants§
Pulling(usize)
PullError(usize, PullError)
PullProgress(usize, Range<u64>)
PushError(usize, PushError)
PushProgress(usize, Range<u64>)
FlushError(PushError)
Finished(usize)
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