pub struct TableReference {
pub table_name: String,
pub access: TableReferenceAccess,
pub source: TableReferenceSource,
}Expand description
A table reference visible at the SQL planning boundary.
Fields§
§table_name: StringTable name as resolved by the current planner/catalog view.
access: TableReferenceAccessAccess class requested by the statement.
source: TableReferenceSourceExtraction source for diagnostics and future extractor expansion.
Implementations§
Source§impl TableReference
impl TableReference
pub fn new( table_name: impl Into<String>, access: TableReferenceAccess, source: TableReferenceSource, ) -> Self
Trait Implementations§
Source§impl Clone for TableReference
impl Clone for TableReference
Source§fn clone(&self) -> TableReference
fn clone(&self) -> TableReference
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 TableReference
impl Debug for TableReference
impl Eq for TableReference
Source§impl PartialEq for TableReference
impl PartialEq for TableReference
impl StructuralPartialEq for TableReference
Auto Trait Implementations§
impl Freeze for TableReference
impl RefUnwindSafe for TableReference
impl Send for TableReference
impl Sync for TableReference
impl Unpin for TableReference
impl UnsafeUnpin for TableReference
impl UnwindSafe for TableReference
Blanket Implementations§
impl<T> Allocation for T
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