pub enum TriggerBody {
Execute {
function: TableRef,
args: Vec<Expression>,
},
Block(String),
}Expand description
Trigger body
Variants§
Trait Implementations§
Source§impl Clone for TriggerBody
impl Clone for TriggerBody
Source§fn clone(&self) -> TriggerBody
fn clone(&self) -> TriggerBody
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 TriggerBody
impl Debug for TriggerBody
Source§impl<'de> Deserialize<'de> for TriggerBody
impl<'de> Deserialize<'de> for TriggerBody
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 TriggerBody
impl PartialEq for TriggerBody
Source§impl Serialize for TriggerBody
impl Serialize for TriggerBody
impl StructuralPartialEq for TriggerBody
Auto Trait Implementations§
impl Freeze for TriggerBody
impl RefUnwindSafe for TriggerBody
impl Send for TriggerBody
impl Sync for TriggerBody
impl Unpin for TriggerBody
impl UnwindSafe for TriggerBody
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