Struct TableQueryResult
pub struct TableQueryResult {
pub table_name: String,
pub engine: String,
pub auto_increment: Option<u64>,
pub table_char_set: Option<String>,
pub table_collation: Option<String>,
pub table_comment: String,
pub create_options: String,
}Fields§
§table_name: String§engine: String§auto_increment: Option<u64>§table_char_set: Option<String>§table_collation: Option<String>§table_comment: String§create_options: StringImplementations§
§impl TableQueryResult
impl TableQueryResult
Trait Implementations§
§impl Debug for TableQueryResult
impl Debug for TableQueryResult
§impl Default for TableQueryResult
impl Default for TableQueryResult
§fn default() -> TableQueryResult
fn default() -> TableQueryResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableQueryResult
impl RefUnwindSafe for TableQueryResult
impl Send for TableQueryResult
impl Sync for TableQueryResult
impl Unpin for TableQueryResult
impl UnwindSafe for TableQueryResult
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