pub struct CqlDropTable {
pub if_exists: bool,
pub table: CqlTable,
}Expand description
DROP TABLE statement AST
Fields§
§if_exists: boolIF EXISTS modifier
table: CqlTableTable name
Trait Implementations§
Source§impl Clone for CqlDropTable
impl Clone for CqlDropTable
Source§fn clone(&self) -> CqlDropTable
fn clone(&self) -> CqlDropTable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CqlDropTable
impl Debug for CqlDropTable
Source§impl<'de> Deserialize<'de> for CqlDropTable
impl<'de> Deserialize<'de> for CqlDropTable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CqlDropTable
impl PartialEq for CqlDropTable
Source§fn eq(&self, other: &CqlDropTable) -> bool
fn eq(&self, other: &CqlDropTable) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CqlDropTable
impl Serialize for CqlDropTable
impl StructuralPartialEq for CqlDropTable
Auto Trait Implementations§
impl Freeze for CqlDropTable
impl RefUnwindSafe for CqlDropTable
impl Send for CqlDropTable
impl Sync for CqlDropTable
impl Unpin for CqlDropTable
impl UnsafeUnpin for CqlDropTable
impl UnwindSafe for CqlDropTable
Blanket Implementations§
impl<T> Allocation for T
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