pub struct DropIndexStatement {
pub token: Token,
pub index_name: Identifier,
pub table_name: Option<Identifier>,
pub if_exists: bool,
}Expand description
DROP INDEX statement
Fields§
§token: Token§index_name: Identifier§table_name: Option<Identifier>§if_exists: boolTrait Implementations§
Source§impl Clone for DropIndexStatement
impl Clone for DropIndexStatement
Source§fn clone(&self) -> DropIndexStatement
fn clone(&self) -> DropIndexStatement
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 DropIndexStatement
impl Debug for DropIndexStatement
Source§impl Display for DropIndexStatement
impl Display for DropIndexStatement
Source§impl PartialEq for DropIndexStatement
impl PartialEq for DropIndexStatement
impl StructuralPartialEq for DropIndexStatement
Auto Trait Implementations§
impl Freeze for DropIndexStatement
impl RefUnwindSafe for DropIndexStatement
impl Send for DropIndexStatement
impl Sync for DropIndexStatement
impl Unpin for DropIndexStatement
impl UnsafeUnpin for DropIndexStatement
impl UnwindSafe for DropIndexStatement
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