pub struct LineageRecord {Show 17 fields
pub record_id: LineageId,
pub run_id: RunId,
pub node_id: NodeId,
pub phase: Phase,
pub controller_id: ControllerId,
pub controller_version: String,
pub variant_id: Option<VariantId>,
pub fold_id: Option<FoldId>,
pub branch_path: Vec<BranchId>,
pub input_lineage: Vec<LineageId>,
pub artifact_refs: Vec<ArtifactRef>,
pub params_fingerprint: String,
pub data_model_shape_fingerprint: Option<String>,
pub aggregation_policy_fingerprint: Option<String>,
pub seed: Option<u64>,
pub unsafe_flags: BTreeSet<String>,
pub metrics: BTreeMap<String, f64>,
}Fields§
§record_id: LineageId§run_id: RunId§node_id: NodeId§phase: Phase§controller_id: ControllerId§controller_version: String§variant_id: Option<VariantId>§fold_id: Option<FoldId>§branch_path: Vec<BranchId>§input_lineage: Vec<LineageId>§artifact_refs: Vec<ArtifactRef>§params_fingerprint: String§data_model_shape_fingerprint: Option<String>§aggregation_policy_fingerprint: Option<String>§seed: Option<u64>§unsafe_flags: BTreeSet<String>§metrics: BTreeMap<String, f64>Implementations§
Source§impl LineageRecord
impl LineageRecord
pub fn validate(&self) -> Result<(), DagMlError>
Trait Implementations§
Source§impl Clone for LineageRecord
impl Clone for LineageRecord
Source§fn clone(&self) -> LineageRecord
fn clone(&self) -> LineageRecord
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 LineageRecord
impl Debug for LineageRecord
Source§impl<'de> Deserialize<'de> for LineageRecord
impl<'de> Deserialize<'de> for LineageRecord
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LineageRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LineageRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LineageRecord
impl PartialEq for LineageRecord
Source§fn eq(&self, other: &LineageRecord) -> bool
fn eq(&self, other: &LineageRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LineageRecord
impl Serialize for LineageRecord
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 LineageRecord
Auto Trait Implementations§
impl Freeze for LineageRecord
impl RefUnwindSafe for LineageRecord
impl Send for LineageRecord
impl Sync for LineageRecord
impl Unpin for LineageRecord
impl UnsafeUnpin for LineageRecord
impl UnwindSafe for LineageRecord
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