pub enum SQLCreateTriggerOperation {
Delete,
Insert,
Update {
columns: Option<Vec<String>>,
},
}
Expand description
Representation of the operation to execute the trigger on
Variants§
Delete
Execute a DELETE operation
Insert
Execute an INSERT operation
Update
Execute an UPDATE operation
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SQLCreateTriggerOperation
impl RefUnwindSafe for SQLCreateTriggerOperation
impl Send for SQLCreateTriggerOperation
impl Sync for SQLCreateTriggerOperation
impl Unpin for SQLCreateTriggerOperation
impl UnwindSafe for SQLCreateTriggerOperation
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