pub struct DropViewStatement {
pub token: Token,
pub view_name: Identifier,
pub if_exists: bool,
}Expand description
DROP VIEW statement
Fields§
§token: Token§view_name: Identifier§if_exists: 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 (const: unstable) · 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 Display for DropViewStatement
impl Display for DropViewStatement
Source§impl PartialEq for DropViewStatement
impl PartialEq 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