pub struct ProgressEvent {
pub phase: Phase,
pub source_name: Option<String>,
pub loaded: Option<u64>,
pub total: Option<u64>,
pub message: String,
}Expand description
Generic progress notification — fires at the start of each pipeline phase
and again on completion. loaded / total are populated when a provider
surfaces them; otherwise both are None.
Fields§
§phase: Phase§source_name: Option<String>§loaded: Option<u64>§total: Option<u64>§message: StringTrait Implementations§
Source§impl Clone for ProgressEvent
impl Clone for ProgressEvent
Source§fn clone(&self) -> ProgressEvent
fn clone(&self) -> ProgressEvent
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 moreAuto Trait Implementations§
impl Freeze for ProgressEvent
impl RefUnwindSafe for ProgressEvent
impl Send for ProgressEvent
impl Sync for ProgressEvent
impl Unpin for ProgressEvent
impl UnsafeUnpin for ProgressEvent
impl UnwindSafe for ProgressEvent
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