pub struct ColumnRef {
pub schema_name: Option<BoundedString>,
pub table_name: Option<BoundedString>,
pub col_name: BoundedString,
}
Expand description
Uniquely identifies a column in a given table in a database.
The schema will be assumed to be the
default_schema
if not specified.
The table will be the one specified in the WHERE
clause of the query if not specified
explicitly.
Fieldsยง
ยงschema_name: Option<BoundedString>
ยงtable_name: Option<BoundedString>
ยงcol_name: BoundedString
Trait Implementationsยง
impl Copy 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