pub enum ProgressType {
CommandOutput,
TaskWait,
Generic,
}Expand description
Type of progress update
Variants§
CommandOutput
Command output streaming
TaskWait
Task wait progress with structured updates
Generic
Generic progress
Trait Implementations§
Source§impl Clone for ProgressType
impl Clone for ProgressType
Source§fn clone(&self) -> ProgressType
fn clone(&self) -> ProgressType
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 ProgressType
impl Debug for ProgressType
Source§impl<'de> Deserialize<'de> for ProgressType
impl<'de> Deserialize<'de> for ProgressType
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 ProgressType
impl PartialEq for ProgressType
Source§impl Serialize for ProgressType
impl Serialize for ProgressType
impl StructuralPartialEq for ProgressType
Auto Trait Implementations§
impl Freeze for ProgressType
impl RefUnwindSafe for ProgressType
impl Send for ProgressType
impl Sync for ProgressType
impl Unpin for ProgressType
impl UnwindSafe for ProgressType
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