pub struct ColumnIdentityKey { /* private fields */ }Expand description
An opaque, dialect-aware identity key for a ColumnReference — the
TableIdentityKey of its owning table (if any, folded by the table
rule) plus the column name folded by the column rule. See
TableIdentityKey for the identity-vs-matching and opacity notes.
Trait Implementations§
Source§impl Clone for ColumnIdentityKey
impl Clone for ColumnIdentityKey
Source§fn clone(&self) -> ColumnIdentityKey
fn clone(&self) -> ColumnIdentityKey
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 ColumnIdentityKey
impl Debug for ColumnIdentityKey
impl Eq for ColumnIdentityKey
Source§impl Hash for ColumnIdentityKey
impl Hash for ColumnIdentityKey
Source§impl PartialEq for ColumnIdentityKey
impl PartialEq for ColumnIdentityKey
Source§fn eq(&self, other: &ColumnIdentityKey) -> bool
fn eq(&self, other: &ColumnIdentityKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ColumnIdentityKey
Auto Trait Implementations§
impl Freeze for ColumnIdentityKey
impl RefUnwindSafe for ColumnIdentityKey
impl Send for ColumnIdentityKey
impl Sync for ColumnIdentityKey
impl Unpin for ColumnIdentityKey
impl UnsafeUnpin for ColumnIdentityKey
impl UnwindSafe for ColumnIdentityKey
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