pub struct TaggedAlterTableStatement {
pub table: TaggedKeyspaceQualifiedName,
pub instruction: AlterTableInstruction,
}
Fields§
§table: TaggedKeyspaceQualifiedName
§instruction: AlterTableInstruction
Trait Implementations§
Source§impl Clone for TaggedAlterTableStatement
impl Clone for TaggedAlterTableStatement
Source§fn clone(&self) -> TaggedAlterTableStatement
fn clone(&self) -> TaggedAlterTableStatement
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 TaggedAlterTableStatement
impl<'a> CustomToTokens<'a> for TaggedAlterTableStatement
Source§impl Debug for TaggedAlterTableStatement
impl Debug for TaggedAlterTableStatement
Source§impl From<TaggedAlterTableStatement> for TaggedDataDefinitionStatement
impl From<TaggedAlterTableStatement> for TaggedDataDefinitionStatement
Source§fn from(original: TaggedAlterTableStatement) -> TaggedDataDefinitionStatement
fn from(original: TaggedAlterTableStatement) -> TaggedDataDefinitionStatement
Converts to this type from the input type.
Source§impl From<TaggedAlterTableStatement> for TaggedStatement
impl From<TaggedAlterTableStatement> for TaggedStatement
Source§fn from(v: TaggedAlterTableStatement) -> Self
fn from(v: TaggedAlterTableStatement) -> Self
Converts to this type from the input type.
Source§impl FromStr for TaggedAlterTableStatement
impl FromStr for TaggedAlterTableStatement
Source§impl Parse for TaggedAlterTableStatement
impl Parse for TaggedAlterTableStatement
type Output = TaggedAlterTableStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for TaggedAlterTableStatement
impl PartialEq for TaggedAlterTableStatement
Source§fn eq(&self, other: &TaggedAlterTableStatement) -> bool
fn eq(&self, other: &TaggedAlterTableStatement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl ToTokens for TaggedAlterTableStatement
impl ToTokens for TaggedAlterTableStatement
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,
impl StructuralPartialEq for TaggedAlterTableStatement
Auto Trait Implementations§
impl Freeze for TaggedAlterTableStatement
impl RefUnwindSafe for TaggedAlterTableStatement
impl Send for TaggedAlterTableStatement
impl Sync for TaggedAlterTableStatement
impl Unpin for TaggedAlterTableStatement
impl UnwindSafe for TaggedAlterTableStatement
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