pub enum PipelineStage {
Idle,
Preprocessing,
Training,
Validation,
PatternExtraction,
Export,
Completed,
Failed,
}Expand description
Pipeline stage for tracking progress
Variants§
Idle
Not started
Preprocessing
Loading and preprocessing data
Training
Training in progress
Validation
Running validation
PatternExtraction
Extracting patterns
Export
Exporting results
Completed
Completed successfully
Failed
Failed with error
Trait Implementations§
Source§impl Clone for PipelineStage
impl Clone for PipelineStage
Source§fn clone(&self) -> PipelineStage
fn clone(&self) -> PipelineStage
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 PipelineStage
impl Debug for PipelineStage
Source§impl<'de> Deserialize<'de> for PipelineStage
impl<'de> Deserialize<'de> for PipelineStage
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 Display for PipelineStage
impl Display for PipelineStage
Source§impl PartialEq for PipelineStage
impl PartialEq for PipelineStage
Source§impl Serialize for PipelineStage
impl Serialize for PipelineStage
impl Eq for PipelineStage
impl StructuralPartialEq for PipelineStage
Auto Trait Implementations§
impl Freeze for PipelineStage
impl RefUnwindSafe for PipelineStage
impl Send for PipelineStage
impl Sync for PipelineStage
impl Unpin for PipelineStage
impl UnwindSafe for PipelineStage
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