pub struct Table {
pub table_name: Option<String>,
pub schema_name: Option<String>,
}Expand description
A TABLE command
A (possibly schema-qualified) table reference used in FROM clauses.
Fields§
§table_name: Option<String>Optional table name (absent for e.g. TABLE command without argument).
schema_name: Option<String>Optional schema/catalog name qualifying the table.
Trait Implementations§
Source§impl Ord for Table
impl Ord for Table
Source§impl PartialOrd for Table
impl PartialOrd for Table
Source§impl VisitMut for Table
impl VisitMut for Table
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for Table
impl StructuralPartialEq for Table
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnsafeUnpin for Table
impl UnwindSafe for Table
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