pub struct CreateTranslationStmt {
pub translation_name: String,
pub source_charset: Option<String>,
pub target_charset: Option<String>,
pub translation_source: Option<String>,
}Expand description
CREATE TRANSLATION statement
SQL:1999 Syntax: CREATE TRANSLATION translation_name [FOR source_charset TO target_charset] [FROM translation_source]
Fields§
§translation_name: String§source_charset: Option<String>§target_charset: Option<String>§translation_source: Option<String>Trait Implementations§
Source§impl Clone for CreateTranslationStmt
impl Clone for CreateTranslationStmt
Source§fn clone(&self) -> CreateTranslationStmt
fn clone(&self) -> CreateTranslationStmt
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 CreateTranslationStmt
impl Debug for CreateTranslationStmt
Source§impl PartialEq for CreateTranslationStmt
impl PartialEq for CreateTranslationStmt
impl StructuralPartialEq for CreateTranslationStmt
Auto Trait Implementations§
impl Freeze for CreateTranslationStmt
impl RefUnwindSafe for CreateTranslationStmt
impl Send for CreateTranslationStmt
impl Sync for CreateTranslationStmt
impl Unpin for CreateTranslationStmt
impl UnwindSafe for CreateTranslationStmt
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