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