pub enum AnalysisProgress {
JobStarted {
sequence: u64,
job: AnalysisJob,
},
JobSucceeded {
sequence: u64,
},
JobFailed {
sequence: u64,
error: String,
},
StageCompleted {
stage: AnalysisStage,
},
}Variants§
Trait Implementations§
Source§impl Clone for AnalysisProgress
impl Clone for AnalysisProgress
Source§fn clone(&self) -> AnalysisProgress
fn clone(&self) -> AnalysisProgress
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 AnalysisProgress
impl Debug for AnalysisProgress
impl Eq for AnalysisProgress
Source§impl PartialEq for AnalysisProgress
impl PartialEq for AnalysisProgress
impl StructuralPartialEq for AnalysisProgress
Auto Trait Implementations§
impl Freeze for AnalysisProgress
impl RefUnwindSafe for AnalysisProgress
impl Send for AnalysisProgress
impl Sync for AnalysisProgress
impl Unpin for AnalysisProgress
impl UnsafeUnpin for AnalysisProgress
impl UnwindSafe for AnalysisProgress
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