pub enum WorkExecutionTarget {
MobFlow {
mob_id: String,
flow_id: String,
flow_config_digest: String,
run_id: String,
execution_authority: WorkExecutionAuthority,
activation_params: Value,
},
}Expand description
Exact execution identity bound to a durable WorkGraph commitment.
This enum intentionally carries stable domain identifiers and canonical input bytes, never process-local handles. The target runtime remains the sole owner of execution status and outputs.
Variants§
MobFlow
Implementations§
Trait Implementations§
Source§impl Clone for WorkExecutionTarget
impl Clone for WorkExecutionTarget
Source§fn clone(&self) -> WorkExecutionTarget
fn clone(&self) -> WorkExecutionTarget
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 WorkExecutionTarget
impl Debug for WorkExecutionTarget
Source§impl<'de> Deserialize<'de> for WorkExecutionTarget
impl<'de> Deserialize<'de> for WorkExecutionTarget
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
impl Eq for WorkExecutionTarget
Source§impl PartialEq for WorkExecutionTarget
impl PartialEq for WorkExecutionTarget
Source§impl Serialize for WorkExecutionTarget
impl Serialize for WorkExecutionTarget
impl StructuralPartialEq for WorkExecutionTarget
Auto Trait Implementations§
impl Freeze for WorkExecutionTarget
impl RefUnwindSafe for WorkExecutionTarget
impl Send for WorkExecutionTarget
impl Sync for WorkExecutionTarget
impl Unpin for WorkExecutionTarget
impl UnsafeUnpin for WorkExecutionTarget
impl UnwindSafe for WorkExecutionTarget
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CoreExecutorTurnFinalizationGuard for Twhere
T: Send,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.