pub struct ColumnLineage {
pub edges: IndexMap<String, Vec<String>>,
}Expand description
Output field → ordered list of originating input field names. A field with
an empty source list is a literal (set).
Fields§
§edges: IndexMap<String, Vec<String>>Trait Implementations§
Source§impl Clone for ColumnLineage
impl Clone for ColumnLineage
Source§fn clone(&self) -> ColumnLineage
fn clone(&self) -> ColumnLineage
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 ColumnLineage
impl Debug for ColumnLineage
Source§impl PartialEq for ColumnLineage
impl PartialEq for ColumnLineage
impl StructuralPartialEq for ColumnLineage
Auto Trait Implementations§
impl Freeze for ColumnLineage
impl RefUnwindSafe for ColumnLineage
impl Send for ColumnLineage
impl Sync for ColumnLineage
impl Unpin for ColumnLineage
impl UnsafeUnpin for ColumnLineage
impl UnwindSafe for ColumnLineage
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