pub struct DropIndexStatement {
pub if_exists: bool,
pub name: Name,
}
Fields§
§if_exists: bool
§name: Name
Trait Implementations§
Source§impl Clone for DropIndexStatement
impl Clone for DropIndexStatement
Source§fn clone(&self) -> DropIndexStatement
fn clone(&self) -> DropIndexStatement
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 DropIndexStatement
impl<'a> CustomToTokens<'a> for DropIndexStatement
Source§impl Debug for DropIndexStatement
impl Debug for DropIndexStatement
Source§impl Display for DropIndexStatement
impl Display for DropIndexStatement
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<DropIndexStatement> for Statement
impl From<DropIndexStatement> for Statement
Source§fn from(v: DropIndexStatement) -> Self
fn from(v: DropIndexStatement) -> Self
Converts to this type from the input type.
Source§impl FromStr for DropIndexStatement
impl FromStr for DropIndexStatement
Source§impl Parse for DropIndexStatement
impl Parse for DropIndexStatement
type Output = DropIndexStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for DropIndexStatement
impl PartialEq for DropIndexStatement
Source§impl ToTokens for DropIndexStatement
impl ToTokens for DropIndexStatement
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 TryInto<DropIndexStatement> for Statement
impl TryInto<DropIndexStatement> for Statement
impl Eq for DropIndexStatement
impl StructuralPartialEq for DropIndexStatement
Auto Trait Implementations§
impl Freeze for DropIndexStatement
impl RefUnwindSafe for DropIndexStatement
impl Send for DropIndexStatement
impl Sync for DropIndexStatement
impl Unpin for DropIndexStatement
impl UnwindSafe for DropIndexStatement
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