pub enum LongOperationEvent {
Started,
Progress,
Cancelled,
Completed,
Failed,
}Variants§
Trait Implementations§
Source§impl Clone for LongOperationEvent
impl Clone for LongOperationEvent
Source§fn clone(&self) -> LongOperationEvent
fn clone(&self) -> LongOperationEvent
Returns a duplicate 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 LongOperationEvent
impl Debug for LongOperationEvent
Source§impl Hash for LongOperationEvent
impl Hash for LongOperationEvent
Source§impl PartialEq for LongOperationEvent
impl PartialEq for LongOperationEvent
Source§impl Serialize for LongOperationEvent
impl Serialize for LongOperationEvent
impl Eq for LongOperationEvent
impl StructuralPartialEq for LongOperationEvent
Auto Trait Implementations§
impl Freeze for LongOperationEvent
impl RefUnwindSafe for LongOperationEvent
impl Send for LongOperationEvent
impl Sync for LongOperationEvent
impl Unpin for LongOperationEvent
impl UnsafeUnpin for LongOperationEvent
impl UnwindSafe for LongOperationEvent
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