Struct mariadb_sys::Schema_specification_st
source · #[repr(C)]pub struct Schema_specification_st {
pub default_table_charset: *const charset_info_st,
pub schema_comment: *mut LEX_CSTRING,
}
Expand description
A helper struct for schema DDL statements: CREATE SCHEMA [IF NOT EXISTS] name [ schema_specification… ] ALTER SCHEMA name [ schema_specification… ]
It stores the “schema_specification” part of the CREATE/ALTER statements and is passed to mysql_create_db() and mysql_alter_db(). Currently consists of the schema default character set, collation and schema_comment.
Fields§
§default_table_charset: *const charset_info_st
§schema_comment: *mut LEX_CSTRING
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Schema_specification_st
impl !Send for Schema_specification_st
impl !Sync for Schema_specification_st
impl Unpin for Schema_specification_st
impl UnwindSafe for Schema_specification_st
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