Struct TableInfo
pub struct TableInfo {
pub name: String,
pub engine: StorageEngine,
pub auto_increment: Option<u64>,
pub char_set: Option<CharSet>,
pub collation: Option<Collation>,
pub comment: String,
}Fields§
§name: StringThe name of the table
engine: StorageEngine§auto_increment: Option<u64>§char_set: Option<CharSet>§collation: Option<Collation>§comment: StringTrait 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