pub struct TableRow {
pub table_schema: String,
pub table_name: String,
pub table_description: Option<String>,
pub is_view: bool,
pub insertable: bool,
pub updatable: bool,
pub deletable: bool,
pub readable: bool,
pub pk_cols: Vec<String>,
pub columns_json: String,
}Expand description
Row type returned from tables query
Fields§
§table_schema: String§table_name: String§table_description: Option<String>§is_view: bool§insertable: bool§updatable: bool§deletable: bool§readable: bool§pk_cols: Vec<String>§columns_json: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TableRow
impl RefUnwindSafe for TableRow
impl Send for TableRow
impl Sync for TableRow
impl Unpin for TableRow
impl UnsafeUnpin for TableRow
impl UnwindSafe for TableRow
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