pub enum WorkflowRuntimeCall {
Log {
values: Vec<Value>,
},
Phase {
name: String,
options: Option<Value>,
},
}Expand description
Synchronous calls emitted by workflow JS.
These calls do not produce JavaScript-visible values. The workflow core should update its run state and continue polling the runtime.
Variants§
Trait Implementations§
Source§impl Clone for WorkflowRuntimeCall
impl Clone for WorkflowRuntimeCall
Source§fn clone(&self) -> WorkflowRuntimeCall
fn clone(&self) -> WorkflowRuntimeCall
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 WorkflowRuntimeCall
impl Debug for WorkflowRuntimeCall
Source§impl<'de> Deserialize<'de> for WorkflowRuntimeCall
impl<'de> Deserialize<'de> for WorkflowRuntimeCall
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
Source§impl PartialEq for WorkflowRuntimeCall
impl PartialEq for WorkflowRuntimeCall
Source§fn eq(&self, other: &WorkflowRuntimeCall) -> bool
fn eq(&self, other: &WorkflowRuntimeCall) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WorkflowRuntimeCall
impl Serialize for WorkflowRuntimeCall
impl StructuralPartialEq for WorkflowRuntimeCall
Auto Trait Implementations§
impl Freeze for WorkflowRuntimeCall
impl RefUnwindSafe for WorkflowRuntimeCall
impl Send for WorkflowRuntimeCall
impl Sync for WorkflowRuntimeCall
impl Unpin for WorkflowRuntimeCall
impl UnsafeUnpin for WorkflowRuntimeCall
impl UnwindSafe for WorkflowRuntimeCall
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