pub enum TriggerType {
Schedule(ScheduleTrigger),
FileArrival(FileArrivalTrigger),
ApiCall,
EventBased(EventTrigger),
ManualStart,
Dependency,
Webhook(WebhookTrigger),
}Expand description
Trigger type for workflow execution.
Variants§
Schedule(ScheduleTrigger)
Cron-style schedule trigger.
FileArrival(FileArrivalTrigger)
File arrival trigger.
ApiCall
API call trigger.
EventBased(EventTrigger)
Event-based trigger.
ManualStart
Manual start trigger.
Dependency
Dependency-based trigger.
Webhook(WebhookTrigger)
HTTP POST webhook trigger.
Trait Implementations§
Source§impl Clone for TriggerType
impl Clone for TriggerType
Source§fn clone(&self) -> TriggerType
fn clone(&self) -> TriggerType
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 moreAuto Trait Implementations§
impl Freeze for TriggerType
impl RefUnwindSafe for TriggerType
impl Send for TriggerType
impl Sync for TriggerType
impl Unpin for TriggerType
impl UnsafeUnpin for TriggerType
impl UnwindSafe for TriggerType
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