pub struct CreateViewStatement {
pub view: String,
pub if_not_exists: bool,
pub query: SelectStatement,
}Fields§
§view: String§if_not_exists: bool§query: SelectStatementTrait Implementations§
Source§impl Clone for CreateViewStatement
impl Clone for CreateViewStatement
Source§fn clone(&self) -> CreateViewStatement
fn clone(&self) -> CreateViewStatement
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 CreateViewStatement
impl RefUnwindSafe for CreateViewStatement
impl Send for CreateViewStatement
impl Sync for CreateViewStatement
impl Unpin for CreateViewStatement
impl UnsafeUnpin for CreateViewStatement
impl UnwindSafe for CreateViewStatement
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