Struct sql_from_models_parser::ast::CreateSchema
source · pub struct CreateSchema {
pub schema_name: ObjectName,
pub if_not_exists: bool,
}
Expand description
CREATE SCHEMA
Fields§
§schema_name: ObjectName
§if_not_exists: bool
Trait Implementations§
source§impl Clone for CreateSchema
impl Clone for CreateSchema
source§fn clone(&self) -> CreateSchema
fn clone(&self) -> CreateSchema
Returns a copy 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 CreateSchema
impl Debug for CreateSchema
source§impl Display for CreateSchema
impl Display for CreateSchema
source§impl Hash for CreateSchema
impl Hash for CreateSchema
source§impl PartialEq<CreateSchema> for CreateSchema
impl PartialEq<CreateSchema> for CreateSchema
source§fn eq(&self, other: &CreateSchema) -> bool
fn eq(&self, other: &CreateSchema) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CreateSchema
impl StructuralEq for CreateSchema
impl StructuralPartialEq for CreateSchema
Auto Trait Implementations§
impl RefUnwindSafe for CreateSchema
impl Send for CreateSchema
impl Sync for CreateSchema
impl Unpin for CreateSchema
impl UnwindSafe for CreateSchema
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