pub struct DropTableOp {
pub name: String,
pub if_exists: bool,
pub cascade: bool,
}Expand description
Drop table operation.
Fields§
§name: StringTable name.
if_exists: boolWhether to use IF EXISTS.
cascade: boolWhether to cascade.
Trait Implementations§
Source§impl Clone for DropTableOp
impl Clone for DropTableOp
Source§fn clone(&self) -> DropTableOp
fn clone(&self) -> DropTableOp
Returns a duplicate of the value. Read more
1.0.0 · 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 DropTableOp
impl Debug for DropTableOp
Source§impl From<DropTableOp> for Operation
impl From<DropTableOp> for Operation
Source§fn from(op: DropTableOp) -> Self
fn from(op: DropTableOp) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DropTableOp
impl PartialEq for DropTableOp
impl Eq for DropTableOp
impl StructuralPartialEq for DropTableOp
Auto Trait Implementations§
impl Freeze for DropTableOp
impl RefUnwindSafe for DropTableOp
impl Send for DropTableOp
impl Sync for DropTableOp
impl Unpin for DropTableOp
impl UnwindSafe for DropTableOp
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