pub struct DataLineage {
pub source: DataSourceKind,
pub history_kind: HistoryKind,
pub as_of: OffsetDateTime,
pub effective_at: Option<OffsetDateTime>,
}Fields§
§source: DataSourceKind§history_kind: HistoryKind§as_of: OffsetDateTime§effective_at: Option<OffsetDateTime>Implementations§
Source§impl DataLineage
impl DataLineage
pub fn new( source: DataSourceKind, history_kind: HistoryKind, as_of: OffsetDateTime, effective_at: Option<OffsetDateTime>, ) -> Self
Trait Implementations§
Source§impl Clone for DataLineage
impl Clone for DataLineage
Source§fn clone(&self) -> DataLineage
fn clone(&self) -> DataLineage
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 moreSource§impl Debug for DataLineage
impl Debug for DataLineage
Source§impl PartialEq for DataLineage
impl PartialEq for DataLineage
impl Eq for DataLineage
impl StructuralPartialEq for DataLineage
Auto Trait Implementations§
impl Freeze for DataLineage
impl RefUnwindSafe for DataLineage
impl Send for DataLineage
impl Sync for DataLineage
impl Unpin for DataLineage
impl UnsafeUnpin for DataLineage
impl UnwindSafe for DataLineage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.