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