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