pub struct TaggedCreateKeyspaceStatement {
pub if_not_exists: bool,
pub keyspace: Tag<Name>,
pub options: Tag<TaggedKeyspaceOpts>,
}Fields
if_not_exists: boolkeyspace: Tag<Name>options: Tag<TaggedKeyspaceOpts>Trait Implementations
sourceimpl Clone for TaggedCreateKeyspaceStatement
impl Clone for TaggedCreateKeyspaceStatement
sourcefn clone(&self) -> TaggedCreateKeyspaceStatement
fn clone(&self) -> TaggedCreateKeyspaceStatement
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 TaggedCreateKeyspaceStatement
impl<'a> CustomToTokens<'a> for TaggedCreateKeyspaceStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for TaggedCreateKeyspaceStatement
impl Debug for TaggedCreateKeyspaceStatement
sourceimpl From<TaggedCreateKeyspaceStatement> for TaggedDataDefinitionStatement
impl From<TaggedCreateKeyspaceStatement> for TaggedDataDefinitionStatement
sourcefn from(
original: TaggedCreateKeyspaceStatement
) -> TaggedDataDefinitionStatement
fn from(
original: TaggedCreateKeyspaceStatement
) -> TaggedDataDefinitionStatement
Converts to this type from the input type.
sourceimpl From<TaggedCreateKeyspaceStatement> for TaggedStatement
impl From<TaggedCreateKeyspaceStatement> for TaggedStatement
sourcefn from(v: TaggedCreateKeyspaceStatement) -> Self
fn from(v: TaggedCreateKeyspaceStatement) -> Self
Converts to this type from the input type.
sourceimpl Parse for TaggedCreateKeyspaceStatement
impl Parse for TaggedCreateKeyspaceStatement
type Output = TaggedCreateKeyspaceStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<TaggedCreateKeyspaceStatement> for TaggedCreateKeyspaceStatement
impl PartialEq<TaggedCreateKeyspaceStatement> for TaggedCreateKeyspaceStatement
sourcefn eq(&self, other: &TaggedCreateKeyspaceStatement) -> bool
fn eq(&self, other: &TaggedCreateKeyspaceStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TaggedCreateKeyspaceStatement) -> bool
fn ne(&self, other: &TaggedCreateKeyspaceStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for TaggedCreateKeyspaceStatement
impl ToTokens for TaggedCreateKeyspaceStatement
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
impl Eq for TaggedCreateKeyspaceStatement
impl StructuralEq for TaggedCreateKeyspaceStatement
impl StructuralPartialEq for TaggedCreateKeyspaceStatement
Auto Trait Implementations
impl RefUnwindSafe for TaggedCreateKeyspaceStatement
impl Send for TaggedCreateKeyspaceStatement
impl Sync for TaggedCreateKeyspaceStatement
impl Unpin for TaggedCreateKeyspaceStatement
impl UnwindSafe for TaggedCreateKeyspaceStatement
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