pub enum RejectAction {
Halt,
Skip,
}Expand description
What to do when the filter condition evaluates to false
Variants§
Halt
Halt the entire workflow — no further tasks in this workflow execute
Skip
Skip only this task — continue with next task in the workflow
Trait Implementations§
Source§impl Clone for RejectAction
impl Clone for RejectAction
Source§fn clone(&self) -> RejectAction
fn clone(&self) -> RejectAction
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 RejectAction
impl Debug for RejectAction
Source§impl Default for RejectAction
impl Default for RejectAction
Source§fn default() -> RejectAction
fn default() -> RejectAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RejectAction
impl<'de> Deserialize<'de> for RejectAction
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
Auto Trait Implementations§
impl Freeze for RejectAction
impl RefUnwindSafe for RejectAction
impl Send for RejectAction
impl Sync for RejectAction
impl Unpin for RejectAction
impl UnsafeUnpin for RejectAction
impl UnwindSafe for RejectAction
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