pub struct RepresentationReplayManifest {Show 19 fields
pub manifest_id: String,
pub representation_plan: RepresentationPlan,
pub combination_plan: Option<CombinationPlan>,
pub output_unit_level: EntityUnitLevel,
pub output_representation: Option<String>,
pub relation_fingerprint: Option<String>,
pub feature_schema_fingerprint: Option<String>,
pub final_reduction_id: Option<String>,
pub sample_observation_mapping: Vec<RepresentationSampleObservationMapping>,
pub combo_selection: Vec<RepresentationComboSelectionRecord>,
pub qc_policy_refs: Vec<String>,
pub outlier_policy_refs: Vec<String>,
pub missing_source_policy: Option<RepresentationMissingSourcePolicy>,
pub missing_repetition_policy: Option<RepresentationMissingSourcePolicy>,
pub prediction_representation: Option<String>,
pub final_output_unit_level: Option<EntityUnitLevel>,
pub train_compatibility: Option<RepresentationCompatibilityReport>,
pub predict_compatibility: Option<RepresentationCompatibilityReport>,
pub metadata: BTreeMap<String, Value>,
}Fields§
§manifest_id: String§representation_plan: RepresentationPlan§combination_plan: Option<CombinationPlan>§output_unit_level: EntityUnitLevel§output_representation: Option<String>§relation_fingerprint: Option<String>§feature_schema_fingerprint: Option<String>§final_reduction_id: Option<String>§sample_observation_mapping: Vec<RepresentationSampleObservationMapping>§combo_selection: Vec<RepresentationComboSelectionRecord>§qc_policy_refs: Vec<String>§outlier_policy_refs: Vec<String>§missing_source_policy: Option<RepresentationMissingSourcePolicy>§missing_repetition_policy: Option<RepresentationMissingSourcePolicy>§prediction_representation: Option<String>§final_output_unit_level: Option<EntityUnitLevel>§train_compatibility: Option<RepresentationCompatibilityReport>§predict_compatibility: Option<RepresentationCompatibilityReport>§metadata: BTreeMap<String, Value>Implementations§
Source§impl RepresentationReplayManifest
impl RepresentationReplayManifest
pub fn validate(&self) -> Result<(), DagMlError>
Trait Implementations§
Source§impl Clone for RepresentationReplayManifest
impl Clone for RepresentationReplayManifest
Source§fn clone(&self) -> RepresentationReplayManifest
fn clone(&self) -> RepresentationReplayManifest
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 RepresentationReplayManifest
impl Debug for RepresentationReplayManifest
Source§impl<'de> Deserialize<'de> for RepresentationReplayManifest
impl<'de> Deserialize<'de> for RepresentationReplayManifest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RepresentationReplayManifest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RepresentationReplayManifest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RepresentationReplayManifest
impl PartialEq for RepresentationReplayManifest
Source§fn eq(&self, other: &RepresentationReplayManifest) -> bool
fn eq(&self, other: &RepresentationReplayManifest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RepresentationReplayManifest
impl Serialize for RepresentationReplayManifest
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RepresentationReplayManifest
Auto Trait Implementations§
impl Freeze for RepresentationReplayManifest
impl RefUnwindSafe for RepresentationReplayManifest
impl Send for RepresentationReplayManifest
impl Sync for RepresentationReplayManifest
impl Unpin for RepresentationReplayManifest
impl UnsafeUnpin for RepresentationReplayManifest
impl UnwindSafe for RepresentationReplayManifest
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