pub struct WorkflowContext {
pub phase: WorkflowPhase,
pub next_action: NextAction,
}Expand description
Derived workflow context (not persisted).
Fields§
§phase: WorkflowPhase§next_action: NextActionTrait Implementations§
Source§impl Clone for WorkflowContext
impl Clone for WorkflowContext
Source§fn clone(&self) -> WorkflowContext
fn clone(&self) -> WorkflowContext
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 moreSource§impl Debug for WorkflowContext
impl Debug for WorkflowContext
impl Eq for WorkflowContext
Source§impl PartialEq for WorkflowContext
impl PartialEq for WorkflowContext
Source§fn eq(&self, other: &WorkflowContext) -> bool
fn eq(&self, other: &WorkflowContext) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WorkflowContext
impl Serialize for WorkflowContext
impl StructuralPartialEq for WorkflowContext
Auto Trait Implementations§
impl Freeze for WorkflowContext
impl RefUnwindSafe for WorkflowContext
impl Send for WorkflowContext
impl Sync for WorkflowContext
impl Unpin for WorkflowContext
impl UnsafeUnpin for WorkflowContext
impl UnwindSafe for WorkflowContext
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