pub struct RepresentationCompatibilityReport {Show 17 fields
pub policy: RepresentationMissingSourcePolicy,
pub outcome: RepresentationCompatibilityOutcome,
pub fallback_used: Option<String>,
pub warning_severity: Option<RepresentationCompatibilitySeverity>,
pub affected_source_count: u64,
pub affected_repetition_count: u64,
pub affected_sample_count: u64,
pub train_relation_fingerprint: Option<String>,
pub predict_relation_fingerprint: Option<String>,
pub train_unit_count: Option<u64>,
pub predict_unit_count: Option<u64>,
pub fixed_width_required: bool,
pub final_reducer_stabilizes_output: bool,
pub cartesian_combo_count_changed: bool,
pub late_fusion_branch_delta: bool,
pub messages: Vec<String>,
pub metadata: BTreeMap<String, Value>,
}Fields§
§policy: RepresentationMissingSourcePolicy§outcome: RepresentationCompatibilityOutcome§fallback_used: Option<String>§warning_severity: Option<RepresentationCompatibilitySeverity>§affected_source_count: u64§affected_repetition_count: u64§affected_sample_count: u64§train_relation_fingerprint: Option<String>§predict_relation_fingerprint: Option<String>§train_unit_count: Option<u64>§predict_unit_count: Option<u64>§fixed_width_required: bool§final_reducer_stabilizes_output: bool§cartesian_combo_count_changed: bool§late_fusion_branch_delta: bool§messages: Vec<String>§metadata: BTreeMap<String, Value>Implementations§
Source§impl RepresentationCompatibilityReport
impl RepresentationCompatibilityReport
pub fn validate(&self) -> Result<(), DagMlError>
Trait Implementations§
Source§impl Clone for RepresentationCompatibilityReport
impl Clone for RepresentationCompatibilityReport
Source§fn clone(&self) -> RepresentationCompatibilityReport
fn clone(&self) -> RepresentationCompatibilityReport
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<'de> Deserialize<'de> for RepresentationCompatibilityReport
impl<'de> Deserialize<'de> for RepresentationCompatibilityReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RepresentationCompatibilityReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RepresentationCompatibilityReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RepresentationCompatibilityReport
impl PartialEq for RepresentationCompatibilityReport
Source§fn eq(&self, other: &RepresentationCompatibilityReport) -> bool
fn eq(&self, other: &RepresentationCompatibilityReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RepresentationCompatibilityReport
impl Serialize for RepresentationCompatibilityReport
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 RepresentationCompatibilityReport
Auto Trait Implementations§
impl Freeze for RepresentationCompatibilityReport
impl RefUnwindSafe for RepresentationCompatibilityReport
impl Send for RepresentationCompatibilityReport
impl Sync for RepresentationCompatibilityReport
impl Unpin for RepresentationCompatibilityReport
impl UnsafeUnpin for RepresentationCompatibilityReport
impl UnwindSafe for RepresentationCompatibilityReport
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