pub enum ProgressError {
Lagged,
Cancelled,
}
Variants§
Lagged
Too many progress updates have occurred since last polled, so some of them have been dropped
Cancelled
This progress token has been cancelled, no more updates are coming
Trait Implementations§
Source§impl Clone for ProgressError
impl Clone for ProgressError
Source§fn clone(&self) -> ProgressError
fn clone(&self) -> ProgressError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProgressError
impl Debug for ProgressError
impl Copy for ProgressError
Auto Trait Implementations§
impl Freeze for ProgressError
impl RefUnwindSafe for ProgressError
impl Send for ProgressError
impl Sync for ProgressError
impl Unpin for ProgressError
impl UnwindSafe for ProgressError
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