pub enum SecondaryIndexStatement {
Create(CreateIndexStatement),
Drop(DropIndexStatement),
}
Variants§
Create(CreateIndexStatement)
Drop(DropIndexStatement)
Trait Implementations§
Source§impl Clone for SecondaryIndexStatement
impl Clone for SecondaryIndexStatement
Source§fn clone(&self) -> SecondaryIndexStatement
fn clone(&self) -> SecondaryIndexStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> CustomToTokens<'a> for SecondaryIndexStatement
impl<'a> CustomToTokens<'a> for SecondaryIndexStatement
Source§impl Debug for SecondaryIndexStatement
impl Debug for SecondaryIndexStatement
Source§impl Display for SecondaryIndexStatement
impl Display for SecondaryIndexStatement
Source§impl From<CreateIndexStatement> for SecondaryIndexStatement
impl From<CreateIndexStatement> for SecondaryIndexStatement
Source§fn from(original: CreateIndexStatement) -> SecondaryIndexStatement
fn from(original: CreateIndexStatement) -> SecondaryIndexStatement
Converts to this type from the input type.
Source§impl From<DropIndexStatement> for SecondaryIndexStatement
impl From<DropIndexStatement> for SecondaryIndexStatement
Source§fn from(original: DropIndexStatement) -> SecondaryIndexStatement
fn from(original: DropIndexStatement) -> SecondaryIndexStatement
Converts to this type from the input type.
Source§impl From<SecondaryIndexStatement> for Statement
impl From<SecondaryIndexStatement> for Statement
Source§fn from(original: SecondaryIndexStatement) -> Statement
fn from(original: SecondaryIndexStatement) -> Statement
Converts to this type from the input type.
Source§impl FromStr for SecondaryIndexStatement
impl FromStr for SecondaryIndexStatement
Source§impl Parse for SecondaryIndexStatement
impl Parse for SecondaryIndexStatement
type Output = SecondaryIndexStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for SecondaryIndexStatement
impl PartialEq for SecondaryIndexStatement
Source§fn eq(&self, other: &SecondaryIndexStatement) -> bool
fn eq(&self, other: &SecondaryIndexStatement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl ToTokens for SecondaryIndexStatement
impl ToTokens for SecondaryIndexStatement
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Source§impl TryFrom<Statement> for SecondaryIndexStatement
impl TryFrom<Statement> for SecondaryIndexStatement
impl Eq for SecondaryIndexStatement
impl StructuralPartialEq for SecondaryIndexStatement
Auto Trait Implementations§
impl Freeze for SecondaryIndexStatement
impl RefUnwindSafe for SecondaryIndexStatement
impl Send for SecondaryIndexStatement
impl Sync for SecondaryIndexStatement
impl Unpin for SecondaryIndexStatement
impl UnwindSafe for SecondaryIndexStatement
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