pub struct DropTriggerStmt {
pub trigger_name: String,
pub cascade: bool,
}Expand description
DROP TRIGGER statement
Fields§
§trigger_name: String§cascade: boolTrait Implementations§
Source§impl Clone for DropTriggerStmt
impl Clone for DropTriggerStmt
Source§fn clone(&self) -> DropTriggerStmt
fn clone(&self) -> DropTriggerStmt
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 DropTriggerStmt
impl Debug for DropTriggerStmt
Source§impl PartialEq for DropTriggerStmt
impl PartialEq for DropTriggerStmt
impl StructuralPartialEq for DropTriggerStmt
Auto Trait Implementations§
impl Freeze for DropTriggerStmt
impl RefUnwindSafe for DropTriggerStmt
impl Send for DropTriggerStmt
impl Sync for DropTriggerStmt
impl Unpin for DropTriggerStmt
impl UnwindSafe for DropTriggerStmt
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