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.
Deprecated (v4.1.2): validated-but-inert. The v3.3.0
analytics-metadata phase (DriftEventGenerator +
AnalyticsMetadataSnapshot.drift_events) produces drift labels
at runtime — configure it via analytics_metadata.drift_events
instead. The schema type remains for backward-compatible YAML
loading; will be removed in v5.0.
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 (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 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 UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.