pub struct DropIndexStatement {
pub name: String,
pub if_exists: bool,
}Expand description
DROP INDEX statement.
Fields§
§name: String§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 · 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 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