Enum server::parse::ast::DropStmt [] [src]

pub enum DropStmt {
    Table(String),
    View(String),
    Database(String),
}

Split between drop-able content (only Tables yet)

Variants

Table
View
Database

Trait Implementations

Derived Implementations

impl PartialEq for DropStmt

fn eq(&self, __arg_0: &DropStmt) -> bool

fn ne(&self, __arg_0: &DropStmt) -> bool

impl Clone for DropStmt

fn clone(&self) -> DropStmt

fn clone_from(&mut self, source: &Self)

impl Debug for DropStmt

fn fmt(&self, __arg_0: &mut Formatter) -> Result