pub struct CreateViewStmt {
pub name: String,
pub sql: String,
pub column_aliases: Vec<String>,
pub or_replace: bool,
pub if_not_exists: bool,
}Fields§
§name: String§sql: String§column_aliases: Vec<String>§or_replace: bool§if_not_exists: boolTrait Implementations§
Source§impl Clone for CreateViewStmt
impl Clone for CreateViewStmt
Source§fn clone(&self) -> CreateViewStmt
fn clone(&self) -> CreateViewStmt
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 moreAuto Trait Implementations§
impl Freeze for CreateViewStmt
impl RefUnwindSafe for CreateViewStmt
impl Send for CreateViewStmt
impl Sync for CreateViewStmt
impl Unpin for CreateViewStmt
impl UnsafeUnpin for CreateViewStmt
impl UnwindSafe for CreateViewStmt
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