pub struct StateData {
pub config: HashMap<String, String>,
pub model_parameters: HashMap<String, Vec<f64>>,
pub feature_names: Option<Vec<String>>,
pub steps_state: Vec<StepState>,
pub execution_stats: ExecutionStatistics,
pub custom_data: HashMap<String, Vec<u8>>,
}Expand description
Pipeline state data
Fields§
§config: HashMap<String, String>Pipeline configuration
model_parameters: HashMap<String, Vec<f64>>Model parameters
feature_names: Option<Vec<String>>Feature names
steps_state: Vec<StepState>Pipeline steps state
execution_stats: ExecutionStatisticsExecution statistics
custom_data: HashMap<String, Vec<u8>>Custom state data
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StateData
impl RefUnwindSafe for StateData
impl Send for StateData
impl Sync for StateData
impl Unpin for StateData
impl UnwindSafe for StateData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more