Struct scylladb_parse::DropTableStatement
source · [−]pub struct DropTableStatement {
pub if_exists: bool,
pub table: KeyspaceQualifiedName,
}Fields
if_exists: booltable: KeyspaceQualifiedNameTrait Implementations
sourceimpl Clone for DropTableStatement
impl Clone for DropTableStatement
sourcefn clone(&self) -> DropTableStatement
fn clone(&self) -> DropTableStatement
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 DropTableStatement
impl<'a> CustomToTokens<'a> for DropTableStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for DropTableStatement
impl Debug for DropTableStatement
sourceimpl Display for DropTableStatement
impl Display for DropTableStatement
sourceimpl From<DropTableStatement> for DataDefinitionStatement
impl From<DropTableStatement> for DataDefinitionStatement
sourcefn from(original: DropTableStatement) -> DataDefinitionStatement
fn from(original: DropTableStatement) -> DataDefinitionStatement
Converts to this type from the input type.
sourceimpl From<DropTableStatement> for Statement
impl From<DropTableStatement> for Statement
sourcefn from(v: DropTableStatement) -> Self
fn from(v: DropTableStatement) -> Self
Converts to this type from the input type.
sourceimpl<T: Into<KeyspaceQualifiedName>> From<T> for DropTableStatement
impl<T: Into<KeyspaceQualifiedName>> From<T> for DropTableStatement
sourceimpl FromStr for DropTableStatement
impl FromStr for DropTableStatement
sourceimpl Parse for DropTableStatement
impl Parse for DropTableStatement
type Output = DropTableStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<DropTableStatement> for DropTableStatement
impl PartialEq<DropTableStatement> for DropTableStatement
sourcefn eq(&self, other: &DropTableStatement) -> bool
fn eq(&self, other: &DropTableStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DropTableStatement) -> bool
fn ne(&self, other: &DropTableStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for DropTableStatement
impl ToTokens for DropTableStatement
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
sourceimpl TryInto<DropTableStatement> for Statement
impl TryInto<DropTableStatement> for Statement
impl Eq for DropTableStatement
impl StructuralEq for DropTableStatement
impl StructuralPartialEq for DropTableStatement
Auto Trait Implementations
impl RefUnwindSafe for DropTableStatement
impl Send for DropTableStatement
impl Sync for DropTableStatement
impl Unpin for DropTableStatement
impl UnwindSafe for DropTableStatement
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