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