pub struct TableInfo {
pub name: String,
pub engine: StorageEngine,
pub auto_increment: Option<u64>,
pub char_set: CharSet,
pub collation: Collation,
pub comment: String,
}
Available on crate features
mysql
and def
only.Fieldsยง
ยงname: String
The name of the table
engine: StorageEngine
ยงauto_increment: Option<u64>
ยงchar_set: CharSet
ยงcollation: Collation
ยงcomment: String
Trait Implementationsยง
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 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