pub struct CreateCollationStmt {
pub collation_name: String,
pub character_set: Option<String>,
pub source_collation: Option<String>,
pub pad_space: Option<bool>,
}Expand description
CREATE COLLATION statement
SQL:1999 Syntax: CREATE COLLATION collation_name [FOR character_set] [FROM source_collation] [PAD SPACE | NO PAD]
Fields§
§collation_name: String§character_set: Option<String>§source_collation: Option<String>§pad_space: Option<bool>Trait Implementations§
Source§impl Clone for CreateCollationStmt
impl Clone for CreateCollationStmt
Source§fn clone(&self) -> CreateCollationStmt
fn clone(&self) -> CreateCollationStmt
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 CreateCollationStmt
impl Debug for CreateCollationStmt
Source§impl PartialEq for CreateCollationStmt
impl PartialEq for CreateCollationStmt
impl StructuralPartialEq for CreateCollationStmt
Auto Trait Implementations§
impl Freeze for CreateCollationStmt
impl RefUnwindSafe for CreateCollationStmt
impl Send for CreateCollationStmt
impl Sync for CreateCollationStmt
impl Unpin for CreateCollationStmt
impl UnwindSafe for CreateCollationStmt
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