Struct IndexDropStatement   
pub struct IndexDropStatement {
    pub(crate) table: Option<TableRef>,
    pub(crate) index: TableIndex,
    pub(crate) if_exists: bool,
}Expand description
Drop an index for an existing table
§Examples
use sea_query::{tests_cfg::*, *};
let index = Index::drop()
    .name("idx-glyph-aspect")
    .table(Glyph::Table)
    .to_owned();
assert_eq!(
    index.to_string(MysqlQueryBuilder),
    r#"DROP INDEX `idx-glyph-aspect` ON `glyph`"#
);
assert_eq!(
    index.to_string(PostgresQueryBuilder),
    r#"DROP INDEX "idx-glyph-aspect""#
);
assert_eq!(
    index.to_string(SqliteQueryBuilder),
    r#"DROP INDEX "idx-glyph-aspect""#
);Fields§
§table: Option<TableRef>§index: TableIndex§if_exists: boolImplementations§
§impl IndexDropStatement
 
impl IndexDropStatement
pub fn new() -> IndexDropStatement
pub fn new() -> IndexDropStatement
Construct a new IndexDropStatement
pub fn name<T>(&mut self, name: T) -> &mut IndexDropStatement
pub fn name<T>(&mut self, name: T) -> &mut IndexDropStatement
Set index name
pub fn table<T>(&mut self, table: T) -> &mut IndexDropStatementwhere
    T: IntoTableRef,
pub fn table<T>(&mut self, table: T) -> &mut IndexDropStatementwhere
    T: IntoTableRef,
Set target table
pub fn if_exists(&mut self) -> &mut IndexDropStatement
§impl IndexDropStatement
 
impl IndexDropStatement
pub fn build<T>(&self, schema_builder: T) -> Stringwhere
    T: SchemaBuilder,
pub fn build<T>(&self, schema_builder: T) -> Stringwhere
    T: SchemaBuilder,
pub fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String
pub fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String
pub fn to_string<T>(&self, schema_builder: T) -> Stringwhere
    T: SchemaBuilder,
pub fn to_string<T>(&self, schema_builder: T) -> Stringwhere
    T: SchemaBuilder,
Trait Implementations§
§impl Clone for IndexDropStatement
 
impl Clone for IndexDropStatement
§fn clone(&self) -> IndexDropStatement
 
fn clone(&self) -> IndexDropStatement
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 more§impl Debug for IndexDropStatement
 
impl Debug for IndexDropStatement
§impl Default for IndexDropStatement
 
impl Default for IndexDropStatement
§fn default() -> IndexDropStatement
 
fn default() -> IndexDropStatement
Returns the “default value” for a type. Read more
§impl SchemaStatementBuilder for IndexDropStatement
 
impl SchemaStatementBuilder for IndexDropStatement
§fn build<T>(&self, schema_builder: T) -> Stringwhere
    T: SchemaBuilder,
 
fn build<T>(&self, schema_builder: T) -> Stringwhere
    T: SchemaBuilder,
Build corresponding SQL statement for certain database backend and return SQL string
§fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String
 
fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String
Build corresponding SQL statement for certain database backend and return SQL string
§fn to_string<T>(&self, schema_builder: T) -> Stringwhere
    T: SchemaBuilder,
 
fn to_string<T>(&self, schema_builder: T) -> Stringwhere
    T: SchemaBuilder,
Build corresponding SQL statement for certain database backend and return SQL string
§impl StatementBuilder for IndexDropStatement
 
impl StatementBuilder for IndexDropStatement
§fn build(&self, db_backend: &DatabaseBackend) -> Statement
 
fn build(&self, db_backend: &DatabaseBackend) -> Statement
Method to call in order to build a Statement
Auto Trait Implementations§
impl Freeze for IndexDropStatement
impl !RefUnwindSafe for IndexDropStatement
impl Send for IndexDropStatement
impl Sync for IndexDropStatement
impl Unpin for IndexDropStatement
impl !UnwindSafe for IndexDropStatement
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
§impl<T> Instrument for T
 
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
 
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more