pub struct DropIndexClause {
pub name: String,
}Expand description
DROP INDEX name
Fields§
§name: StringName of the index to drop.
Trait Implementations§
Source§impl Clone for DropIndexClause
impl Clone for DropIndexClause
Source§fn clone(&self) -> DropIndexClause
fn clone(&self) -> DropIndexClause
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 DropIndexClause
impl Debug for DropIndexClause
Source§impl PartialEq for DropIndexClause
impl PartialEq for DropIndexClause
impl StructuralPartialEq for DropIndexClause
Auto Trait Implementations§
impl Freeze for DropIndexClause
impl RefUnwindSafe for DropIndexClause
impl Send for DropIndexClause
impl Sync for DropIndexClause
impl Unpin for DropIndexClause
impl UnsafeUnpin for DropIndexClause
impl UnwindSafe for DropIndexClause
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