pub enum ColumnRef {
Column(SeaRc<dyn Iden>),
TableColumn(SeaRc<dyn Iden>, SeaRc<dyn Iden>),
SchemaTableColumn(SeaRc<dyn Iden>, SeaRc<dyn Iden>, SeaRc<dyn Iden>),
Asterisk,
TableAsterisk(SeaRc<dyn Iden>),
}
Expand description
Column references
Variants§
Column(SeaRc<dyn Iden>)
TableColumn(SeaRc<dyn Iden>, SeaRc<dyn Iden>)
SchemaTableColumn(SeaRc<dyn Iden>, SeaRc<dyn Iden>, SeaRc<dyn Iden>)
Asterisk
TableAsterisk(SeaRc<dyn Iden>)
Trait Implementations§
source§impl From<ColumnRef> for SimpleExpr
impl From<ColumnRef> for SimpleExpr
source§fn from(col: ColumnRef) -> SimpleExpr
fn from(col: ColumnRef) -> SimpleExpr
Converts to this type from the input type.
source§impl IntoColumnRef for ColumnRef
impl IntoColumnRef for ColumnRef
fn into_column_ref(self) -> ColumnRef
source§impl PartialEq for ColumnRef
impl PartialEq for ColumnRef
impl StructuralPartialEq for ColumnRef
Auto Trait Implementations§
impl Freeze for ColumnRef
impl !RefUnwindSafe for ColumnRef
impl Send for ColumnRef
impl Sync for ColumnRef
impl Unpin for ColumnRef
impl !UnwindSafe for ColumnRef
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