pub struct DropViewStatement {
pub comments: Vec<String>,
pub name: TableRef,
pub if_exists: bool,
pub materialized: bool,
}Expand description
DROP VIEW statement.
Fields§
§comments: Vec<String>Comments attached to this statement.
name: TableRef§if_exists: bool§materialized: boolTrait Implementations§
Source§impl Clone for DropViewStatement
impl Clone for DropViewStatement
Source§fn clone(&self) -> DropViewStatement
fn clone(&self) -> DropViewStatement
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 DropViewStatement
impl Debug for DropViewStatement
Source§impl<'de> Deserialize<'de> for DropViewStatement
impl<'de> Deserialize<'de> for DropViewStatement
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DropViewStatement
impl PartialEq for DropViewStatement
Source§impl Serialize for DropViewStatement
impl Serialize for DropViewStatement
impl StructuralPartialEq for DropViewStatement
Auto Trait Implementations§
impl Freeze for DropViewStatement
impl RefUnwindSafe for DropViewStatement
impl Send for DropViewStatement
impl Sync for DropViewStatement
impl Unpin for DropViewStatement
impl UnsafeUnpin for DropViewStatement
impl UnwindSafe for DropViewStatement
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