pub struct ColumnRead {
pub reference: ColumnReference,
pub resolution: ResolutionKind,
}Expand description
One read-side occurrence of a ColumnReference, pairing the
identity with how the resolver resolved it (ResolutionKind).
Read-side surfaces (ColumnOperation::reads and
ColumnLineageEdge::source) use this wrapper so the same column
referenced twice can carry per-occurrence resolution metadata
without breaking ColumnReference’s identity-only contract. The
write-side counterpart is ColumnWrite.
Fields§
§reference: ColumnReference§resolution: ResolutionKindTrait Implementations§
Source§impl Clone for ColumnRead
impl Clone for ColumnRead
Source§fn clone(&self) -> ColumnRead
fn clone(&self) -> ColumnRead
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 ColumnRead
impl Debug for ColumnRead
impl Eq for ColumnRead
Source§impl Hash for ColumnRead
impl Hash for ColumnRead
Source§impl PartialEq for ColumnRead
impl PartialEq for ColumnRead
Source§fn eq(&self, other: &ColumnRead) -> bool
fn eq(&self, other: &ColumnRead) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ColumnRead
Auto Trait Implementations§
impl Freeze for ColumnRead
impl RefUnwindSafe for ColumnRead
impl Send for ColumnRead
impl Sync for ColumnRead
impl Unpin for ColumnRead
impl UnsafeUnpin for ColumnRead
impl UnwindSafe for ColumnRead
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