pub enum ProgressState {
Normal,
Complete,
Warning,
Error,
}Expand description
Progress state for styling.
Variants§
Normal
Normal progress (default)
Complete
Completed successfully
Warning
Progress is slow/stalled
Error
Progress has errored
Trait Implementations§
Source§impl Clone for ProgressState
impl Clone for ProgressState
Source§fn clone(&self) -> ProgressState
fn clone(&self) -> ProgressState
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 ProgressState
impl Debug for ProgressState
Source§impl Default for ProgressState
impl Default for ProgressState
Source§fn default() -> ProgressState
fn default() -> ProgressState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProgressState
impl<'de> Deserialize<'de> for ProgressState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProgressState
impl PartialEq for ProgressState
Source§impl Serialize for ProgressState
impl Serialize for ProgressState
impl Copy for ProgressState
impl Eq for ProgressState
impl StructuralPartialEq for ProgressState
Auto Trait Implementations§
impl Freeze for ProgressState
impl RefUnwindSafe for ProgressState
impl Send for ProgressState
impl Sync for ProgressState
impl Unpin for ProgressState
impl UnwindSafe for ProgressState
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