pub enum WorkflowResidency {
Resident(WorkflowProcessHandle),
NonResident,
Terminal,
Unknown,
}Expand description
AE’s answer when AT resolves a logical workflow to a live process.
Variants§
Resident(WorkflowProcessHandle)
The workflow is currently resident and can receive mailbox messages.
NonResident
The workflow exists durably but has no live process at the moment.
Terminal
The workflow is terminal and should not receive live interactions.
Unknown
AE has no durable or live workflow for the requested identifier.
Trait Implementations§
Source§impl Clone for WorkflowResidency
impl Clone for WorkflowResidency
Source§fn clone(&self) -> WorkflowResidency
fn clone(&self) -> WorkflowResidency
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 moreimpl Copy for WorkflowResidency
Source§impl Debug for WorkflowResidency
impl Debug for WorkflowResidency
impl Eq for WorkflowResidency
Source§impl PartialEq for WorkflowResidency
impl PartialEq for WorkflowResidency
impl StructuralPartialEq for WorkflowResidency
Auto Trait Implementations§
impl Freeze for WorkflowResidency
impl RefUnwindSafe for WorkflowResidency
impl Send for WorkflowResidency
impl Sync for WorkflowResidency
impl Unpin for WorkflowResidency
impl UnsafeUnpin for WorkflowResidency
impl UnwindSafe for WorkflowResidency
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.