pub struct DropTableStatement {
pub if_exists: bool,
pub table: KeyspaceQualifiedName,
}
Fields§
§if_exists: bool
§table: KeyspaceQualifiedName
Trait Implementations§
Source§impl Clone for DropTableStatement
impl Clone for DropTableStatement
Source§fn clone(&self) -> DropTableStatement
fn clone(&self) -> DropTableStatement
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 DropTableStatement
impl<'a> CustomToTokens<'a> for DropTableStatement
Source§impl Debug for DropTableStatement
impl Debug for DropTableStatement
Source§impl Display for DropTableStatement
impl Display for DropTableStatement
Source§impl From<DropTableStatement> for DataDefinitionStatement
impl From<DropTableStatement> for DataDefinitionStatement
Source§fn from(original: DropTableStatement) -> DataDefinitionStatement
fn from(original: DropTableStatement) -> DataDefinitionStatement
Converts to this type from the input type.
Source§impl From<DropTableStatement> for Statement
impl From<DropTableStatement> for Statement
Source§fn from(v: DropTableStatement) -> Self
fn from(v: DropTableStatement) -> Self
Converts to this type from the input type.
Source§impl<T: Into<KeyspaceQualifiedName>> From<T> for DropTableStatement
impl<T: Into<KeyspaceQualifiedName>> From<T> for DropTableStatement
Source§impl FromStr for DropTableStatement
impl FromStr for DropTableStatement
Source§impl Parse for DropTableStatement
impl Parse for DropTableStatement
type Output = DropTableStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for DropTableStatement
impl PartialEq for DropTableStatement
Source§impl ToTokens for DropTableStatement
impl ToTokens for DropTableStatement
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,
Source§impl TryInto<DropTableStatement> for Statement
impl TryInto<DropTableStatement> for Statement
impl Eq for DropTableStatement
impl StructuralPartialEq for DropTableStatement
Auto Trait Implementations§
impl Freeze for DropTableStatement
impl RefUnwindSafe for DropTableStatement
impl Send for DropTableStatement
impl Sync for DropTableStatement
impl Unpin for DropTableStatement
impl UnwindSafe for DropTableStatement
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