pub enum SchemaCommand {
CreateIndex(CreateIndex),
DropIndex(DropIndex),
ShowIndexes(ShowIndexes),
CreateConstraint(CreateConstraint),
DropConstraint(DropConstraint),
ShowConstraints(ShowConstraints),
}Variants§
CreateIndex(CreateIndex)
DropIndex(DropIndex)
ShowIndexes(ShowIndexes)
CreateConstraint(CreateConstraint)
DropConstraint(DropConstraint)
ShowConstraints(ShowConstraints)
Trait Implementations§
Source§impl Clone for SchemaCommand
impl Clone for SchemaCommand
Source§fn clone(&self) -> SchemaCommand
fn clone(&self) -> SchemaCommand
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 moreAuto Trait Implementations§
impl Freeze for SchemaCommand
impl RefUnwindSafe for SchemaCommand
impl Send for SchemaCommand
impl Sync for SchemaCommand
impl Unpin for SchemaCommand
impl UnsafeUnpin for SchemaCommand
impl UnwindSafe for SchemaCommand
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