pub enum ProgressStatus {
Success,
Failed,
Cancelled,
}Expand description
Outcome of a progress notification.
Variants§
Trait Implementations§
Source§impl Clone for ProgressStatus
impl Clone for ProgressStatus
Source§fn clone(&self) -> ProgressStatus
fn clone(&self) -> ProgressStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ProgressStatus
Source§impl Debug for ProgressStatus
impl Debug for ProgressStatus
impl Eq for ProgressStatus
Source§impl PartialEq for ProgressStatus
impl PartialEq for ProgressStatus
Source§fn eq(&self, other: &ProgressStatus) -> bool
fn eq(&self, other: &ProgressStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProgressStatus
impl Serialize for ProgressStatus
impl StructuralPartialEq for ProgressStatus
Auto Trait Implementations§
impl Freeze for ProgressStatus
impl RefUnwindSafe for ProgressStatus
impl Send for ProgressStatus
impl Sync for ProgressStatus
impl Unpin for ProgressStatus
impl UnsafeUnpin for ProgressStatus
impl UnwindSafe for ProgressStatus
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