pub struct DropIndex {
pub name: Identifier,
pub table: Option<TableRef>,
pub if_exists: bool,
pub concurrently: bool,
}Expand description
DROP INDEX statement
Fields§
§name: Identifier§table: Option<TableRef>§if_exists: bool§concurrently: boolPostgreSQL CONCURRENTLY modifier
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DropIndex
impl<'de> Deserialize<'de> for DropIndex
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for DropIndex
Auto Trait Implementations§
impl Freeze for DropIndex
impl RefUnwindSafe for DropIndex
impl Send for DropIndex
impl Sync for DropIndex
impl Unpin for DropIndex
impl UnwindSafe for DropIndex
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