pub enum CompactProgressEvent {
HooksStart {
hook_type: CompactHookType,
},
CompactStart,
CompactEnd {
message: Option<String>,
},
}Expand description
Compact progress event types
Variants§
Trait Implementations§
Source§impl Clone for CompactProgressEvent
impl Clone for CompactProgressEvent
Source§fn clone(&self) -> CompactProgressEvent
fn clone(&self) -> CompactProgressEvent
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 CompactProgressEvent
impl Debug for CompactProgressEvent
Source§impl<'de> Deserialize<'de> for CompactProgressEvent
impl<'de> Deserialize<'de> for CompactProgressEvent
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
Auto Trait Implementations§
impl Freeze for CompactProgressEvent
impl RefUnwindSafe for CompactProgressEvent
impl Send for CompactProgressEvent
impl Sync for CompactProgressEvent
impl Unpin for CompactProgressEvent
impl UnsafeUnpin for CompactProgressEvent
impl UnwindSafe for CompactProgressEvent
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