pub struct CreateCharacterSetStmt {
pub charset_name: String,
pub source: Option<String>,
pub collation: Option<String>,
}Expand description
CREATE CHARACTER SET statement
SQL:1999 Syntax: CREATE CHARACTER SET charset_name [AS] [GET source] [COLLATE FROM collation]
Fields§
§charset_name: String§source: Option<String>§collation: Option<String>Trait Implementations§
Source§impl Clone for CreateCharacterSetStmt
impl Clone for CreateCharacterSetStmt
Source§fn clone(&self) -> CreateCharacterSetStmt
fn clone(&self) -> CreateCharacterSetStmt
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateCharacterSetStmt
impl Debug for CreateCharacterSetStmt
Source§impl PartialEq for CreateCharacterSetStmt
impl PartialEq for CreateCharacterSetStmt
impl StructuralPartialEq for CreateCharacterSetStmt
Auto Trait Implementations§
impl Freeze for CreateCharacterSetStmt
impl RefUnwindSafe for CreateCharacterSetStmt
impl Send for CreateCharacterSetStmt
impl Sync for CreateCharacterSetStmt
impl Unpin for CreateCharacterSetStmt
impl UnwindSafe for CreateCharacterSetStmt
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