pub enum AlterIndexAction {
Rename(Identifier),
SetTablespace(Identifier),
Visible(bool),
}Expand description
Actions for ALTER INDEX
Variants§
Rename(Identifier)
Rename the index
SetTablespace(Identifier)
Set tablespace
Visible(bool)
Set visibility (MySQL)
Trait Implementations§
Source§impl Clone for AlterIndexAction
impl Clone for AlterIndexAction
Source§fn clone(&self) -> AlterIndexAction
fn clone(&self) -> AlterIndexAction
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 AlterIndexAction
impl Debug for AlterIndexAction
Source§impl<'de> Deserialize<'de> for AlterIndexAction
impl<'de> Deserialize<'de> for AlterIndexAction
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
Source§impl PartialEq for AlterIndexAction
impl PartialEq for AlterIndexAction
Source§impl Serialize for AlterIndexAction
impl Serialize for AlterIndexAction
impl StructuralPartialEq for AlterIndexAction
Auto Trait Implementations§
impl Freeze for AlterIndexAction
impl RefUnwindSafe for AlterIndexAction
impl Send for AlterIndexAction
impl Sync for AlterIndexAction
impl Unpin for AlterIndexAction
impl UnwindSafe for AlterIndexAction
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