pub struct TableQueryResult {
pub table_name: String,
pub engine: String,
pub auto_increment: Option<u64>,
pub table_char_set: String,
pub table_collation: String,
pub table_comment: String,
pub create_options: String,
}
Available on crate features
mysql
and query
only.Fields§
§table_name: String
§engine: String
§auto_increment: Option<u64>
§table_char_set: String
§table_collation: String
§table_comment: String
§create_options: String
Implementations§
Trait Implementations§
Source§impl Debug for TableQueryResult
impl Debug for TableQueryResult
Source§impl Default for TableQueryResult
impl Default for TableQueryResult
Source§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