pub enum DefaultAction {
Default,
Next,
Error,
Custom(String),
}Expand description
Default action type for simple workflows
Variants§
Default
Default action (used for fallback routing)
Next
Next node in sequence
Error
Error handler
Custom(String)
Custom named action
Implementations§
Trait Implementations§
Source§impl ActionType for DefaultAction
impl ActionType for DefaultAction
Source§impl Clone for DefaultAction
impl Clone for DefaultAction
Source§fn clone(&self) -> DefaultAction
fn clone(&self) -> DefaultAction
Returns a copy 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 DefaultAction
impl Debug for DefaultAction
Source§impl Default for DefaultAction
impl Default for DefaultAction
Source§impl Hash for DefaultAction
impl Hash for DefaultAction
Source§impl PartialEq for DefaultAction
impl PartialEq for DefaultAction
impl Eq for DefaultAction
impl StructuralPartialEq for DefaultAction
Auto Trait Implementations§
impl Freeze for DefaultAction
impl RefUnwindSafe for DefaultAction
impl Send for DefaultAction
impl Sync for DefaultAction
impl Unpin for DefaultAction
impl UnwindSafe for DefaultAction
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