pub struct TableRef {
pub schema_name: Option<BoundedString>,
pub table_name: BoundedString,
}
Expand description
Uniquely identifies a table in a database. The schema will be assumed to be the
default_schema
if not specified.
Fields§
§schema_name: Option<BoundedString>
§table_name: BoundedString
Trait Implementations§
impl Copy for TableRef
impl StructuralPartialEq for TableRef
Auto Trait Implementations§
impl Freeze for TableRef
impl RefUnwindSafe for TableRef
impl Send for TableRef
impl Sync for TableRef
impl Unpin for TableRef
impl UnwindSafe for TableRef
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