pub enum SpinnerResult {
Success,
Error,
Skipped,
}Expand description
Final state of a spinner operation.
Variants§
Success
Operation completed successfully.
Error
Operation failed.
Skipped
Operation was cancelled/skipped.
Trait Implementations§
Source§impl Clone for SpinnerResult
impl Clone for SpinnerResult
Source§fn clone(&self) -> SpinnerResult
fn clone(&self) -> SpinnerResult
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 moreSource§impl Debug for SpinnerResult
impl Debug for SpinnerResult
Source§impl PartialEq for SpinnerResult
impl PartialEq for SpinnerResult
Source§fn eq(&self, other: &SpinnerResult) -> bool
fn eq(&self, other: &SpinnerResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SpinnerResult
impl Eq for SpinnerResult
impl StructuralPartialEq for SpinnerResult
Auto Trait Implementations§
impl Freeze for SpinnerResult
impl RefUnwindSafe for SpinnerResult
impl Send for SpinnerResult
impl Sync for SpinnerResult
impl Unpin for SpinnerResult
impl UnsafeUnpin for SpinnerResult
impl UnwindSafe for SpinnerResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.