pub struct DriftLabelingSchemaConfig {
pub enabled: bool,
pub statistical: StatisticalDriftLabelingSchemaConfig,
pub categorical: CategoricalDriftLabelingSchemaConfig,
pub temporal: TemporalDriftLabelingSchemaConfig,
pub regulatory_calendar_preset: Option<String>,
}Expand description
Configuration for drift ground truth labeling.
Fields§
§enabled: boolEnable drift labeling.
statistical: StatisticalDriftLabelingSchemaConfigStatistical drift labeling.
categorical: CategoricalDriftLabelingSchemaConfigCategorical drift labeling.
temporal: TemporalDriftLabelingSchemaConfigTemporal drift labeling.
regulatory_calendar_preset: Option<String>Regulatory calendar preset.
Trait Implementations§
Source§impl Clone for DriftLabelingSchemaConfig
impl Clone for DriftLabelingSchemaConfig
Source§fn clone(&self) -> DriftLabelingSchemaConfig
fn clone(&self) -> DriftLabelingSchemaConfig
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 DriftLabelingSchemaConfig
impl Debug for DriftLabelingSchemaConfig
Source§impl Default for DriftLabelingSchemaConfig
impl Default for DriftLabelingSchemaConfig
Source§fn default() -> DriftLabelingSchemaConfig
fn default() -> DriftLabelingSchemaConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DriftLabelingSchemaConfig
impl<'de> Deserialize<'de> for DriftLabelingSchemaConfig
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 DriftLabelingSchemaConfig
impl RefUnwindSafe for DriftLabelingSchemaConfig
impl Send for DriftLabelingSchemaConfig
impl Sync for DriftLabelingSchemaConfig
impl Unpin for DriftLabelingSchemaConfig
impl UnwindSafe for DriftLabelingSchemaConfig
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