pub trait DropTable {
    // Required methods
    fn if_exists(self) -> Self;
    fn build(self) -> String;
}
Expand description

Trait representing a drop table builder.

Required Methods§

source

fn if_exists(self) -> Self

Drops the table only, if it exists.

source

fn build(self) -> String

This method is used to build the drop table statement.

Implementors§

source§

impl<'until_build> DropTable for DropTableImpl<'until_build>