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