Struct scylladb_parse::AlterTableStatement
source · [−]pub struct AlterTableStatement {
pub table: KeyspaceQualifiedName,
pub instruction: AlterTableInstruction,
}Fields
table: KeyspaceQualifiedNameinstruction: AlterTableInstructionTrait Implementations
sourceimpl Clone for AlterTableStatement
impl Clone for AlterTableStatement
sourcefn clone(&self) -> AlterTableStatement
fn clone(&self) -> AlterTableStatement
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a> CustomToTokens<'a> for AlterTableStatement
impl<'a> CustomToTokens<'a> for AlterTableStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for AlterTableStatement
impl Debug for AlterTableStatement
sourceimpl Display for AlterTableStatement
impl Display for AlterTableStatement
sourceimpl From<AlterTableStatement> for DataDefinitionStatement
impl From<AlterTableStatement> for DataDefinitionStatement
sourcefn from(original: AlterTableStatement) -> DataDefinitionStatement
fn from(original: AlterTableStatement) -> DataDefinitionStatement
Converts to this type from the input type.
sourceimpl From<AlterTableStatement> for Statement
impl From<AlterTableStatement> for Statement
sourcefn from(v: AlterTableStatement) -> Self
fn from(v: AlterTableStatement) -> Self
Converts to this type from the input type.
sourceimpl FromStr for AlterTableStatement
impl FromStr for AlterTableStatement
sourceimpl Parse for AlterTableStatement
impl Parse for AlterTableStatement
type Output = AlterTableStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<AlterTableStatement> for AlterTableStatement
impl PartialEq<AlterTableStatement> for AlterTableStatement
sourcefn eq(&self, other: &AlterTableStatement) -> bool
fn eq(&self, other: &AlterTableStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AlterTableStatement) -> bool
fn ne(&self, other: &AlterTableStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for AlterTableStatement
impl ToTokens for AlterTableStatement
sourcefn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Write self to the given TokenStream. Read more
sourcefn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Convert self directly into a TokenStream object. Read more
sourcefn into_token_stream(self) -> TokenStream
fn into_token_stream(self) -> TokenStream
Convert self directly into a TokenStream object. Read more
sourceimpl TryInto<AlterTableStatement> for Statement
impl TryInto<AlterTableStatement> for Statement
impl StructuralPartialEq for AlterTableStatement
Auto Trait Implementations
impl RefUnwindSafe for AlterTableStatement
impl Send for AlterTableStatement
impl Sync for AlterTableStatement
impl Unpin for AlterTableStatement
impl UnwindSafe for AlterTableStatement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more