pub struct LineageNode {
pub id: String,
pub stage: String,
pub operation: String,
pub timestamp: String,
pub row_count: Option<u64>,
pub parent_ids: Vec<String>,
}Expand description
A node in the data lineage graph.
Fields§
§id: String§stage: String§operation: String§timestamp: String§row_count: Option<u64>§parent_ids: Vec<String>Trait Implementations§
Source§impl Clone for LineageNode
impl Clone for LineageNode
Source§fn clone(&self) -> LineageNode
fn clone(&self) -> LineageNode
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 moreAuto Trait Implementations§
impl Freeze for LineageNode
impl RefUnwindSafe for LineageNode
impl Send for LineageNode
impl Sync for LineageNode
impl Unpin for LineageNode
impl UnsafeUnpin for LineageNode
impl UnwindSafe for LineageNode
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