pub struct TableInfo {
pub name: String,
pub schema: Option<String>,
pub table_type: TableType,
}Expand description
A table visible to the current connection.
Fields§
§name: StringThe table name.
schema: Option<String>The schema (namespace) the table belongs to, if the backend supports it.
table_type: TableTypeThe kind of table object.
Trait Implementations§
impl Eq for TableInfo
impl StructuralPartialEq for TableInfo
Auto Trait Implementations§
impl Freeze for TableInfo
impl RefUnwindSafe for TableInfo
impl Send for TableInfo
impl Sync for TableInfo
impl Unpin for TableInfo
impl UnsafeUnpin for TableInfo
impl UnwindSafe for TableInfo
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