Struct scylladb_parse::AlterKeyspaceStatement
source · [−]pub struct AlterKeyspaceStatement {
pub keyspace: Name,
pub options: KeyspaceOpts,
}Fields
keyspace: Nameoptions: KeyspaceOptsTrait Implementations
sourceimpl Clone for AlterKeyspaceStatement
impl Clone for AlterKeyspaceStatement
sourcefn clone(&self) -> AlterKeyspaceStatement
fn clone(&self) -> AlterKeyspaceStatement
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 AlterKeyspaceStatement
impl<'a> CustomToTokens<'a> for AlterKeyspaceStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for AlterKeyspaceStatement
impl Debug for AlterKeyspaceStatement
sourceimpl Display for AlterKeyspaceStatement
impl Display for AlterKeyspaceStatement
sourceimpl From<AlterKeyspaceStatement> for DataDefinitionStatement
impl From<AlterKeyspaceStatement> for DataDefinitionStatement
sourcefn from(original: AlterKeyspaceStatement) -> DataDefinitionStatement
fn from(original: AlterKeyspaceStatement) -> DataDefinitionStatement
Converts to this type from the input type.
sourceimpl From<AlterKeyspaceStatement> for Statement
impl From<AlterKeyspaceStatement> for Statement
sourcefn from(v: AlterKeyspaceStatement) -> Self
fn from(v: AlterKeyspaceStatement) -> Self
Converts to this type from the input type.
sourceimpl FromStr for AlterKeyspaceStatement
impl FromStr for AlterKeyspaceStatement
sourceimpl Parse for AlterKeyspaceStatement
impl Parse for AlterKeyspaceStatement
type Output = AlterKeyspaceStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<AlterKeyspaceStatement> for AlterKeyspaceStatement
impl PartialEq<AlterKeyspaceStatement> for AlterKeyspaceStatement
sourcefn eq(&self, other: &AlterKeyspaceStatement) -> bool
fn eq(&self, other: &AlterKeyspaceStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AlterKeyspaceStatement) -> bool
fn ne(&self, other: &AlterKeyspaceStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for AlterKeyspaceStatement
impl ToTokens for AlterKeyspaceStatement
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<AlterKeyspaceStatement> for Statement
impl TryInto<AlterKeyspaceStatement> for Statement
impl Eq for AlterKeyspaceStatement
impl StructuralEq for AlterKeyspaceStatement
impl StructuralPartialEq for AlterKeyspaceStatement
Auto Trait Implementations
impl RefUnwindSafe for AlterKeyspaceStatement
impl Send for AlterKeyspaceStatement
impl Sync for AlterKeyspaceStatement
impl Unpin for AlterKeyspaceStatement
impl UnwindSafe for AlterKeyspaceStatement
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