pub struct CreateMatviewStmt {
pub name: String,
pub select_sql: String,
pub select_parsed: SelectQuery,
pub with_data: bool,
pub if_not_exists: bool,
}Fields§
§name: String§select_sql: String§select_parsed: SelectQuery§with_data: bool§if_not_exists: boolTrait Implementations§
Source§impl Clone for CreateMatviewStmt
impl Clone for CreateMatviewStmt
Source§fn clone(&self) -> CreateMatviewStmt
fn clone(&self) -> CreateMatviewStmt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateMatviewStmt
impl RefUnwindSafe for CreateMatviewStmt
impl Send for CreateMatviewStmt
impl Sync for CreateMatviewStmt
impl Unpin for CreateMatviewStmt
impl UnsafeUnpin for CreateMatviewStmt
impl UnwindSafe for CreateMatviewStmt
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