pub struct SignalWorkflowExecutionInput {
pub domain: String,
pub input: Option<String>,
pub run_id: Option<String>,
pub signal_name: String,
pub workflow_id: String,
}
Fields§
§domain: String
The name of the domain containing the workflow execution to signal.
input: Option<String>
Data to attach to the WorkflowExecutionSignaled
event in the target workflow execution's history.
run_id: Option<String>
The runId of the workflow execution to signal.
signal_name: String
The name of the signal. This name must be meaningful to the target workflow.
workflow_id: String
The workflowId of the workflow execution to signal.
Trait Implementations§
Source§impl Clone for SignalWorkflowExecutionInput
impl Clone for SignalWorkflowExecutionInput
Source§fn clone(&self) -> SignalWorkflowExecutionInput
fn clone(&self) -> SignalWorkflowExecutionInput
Returns a duplicate 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 SignalWorkflowExecutionInput
impl Debug for SignalWorkflowExecutionInput
Source§impl Default for SignalWorkflowExecutionInput
impl Default for SignalWorkflowExecutionInput
Source§fn default() -> SignalWorkflowExecutionInput
fn default() -> SignalWorkflowExecutionInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for SignalWorkflowExecutionInput
impl PartialEq for SignalWorkflowExecutionInput
Source§fn eq(&self, other: &SignalWorkflowExecutionInput) -> bool
fn eq(&self, other: &SignalWorkflowExecutionInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SignalWorkflowExecutionInput
Auto Trait Implementations§
impl Freeze for SignalWorkflowExecutionInput
impl RefUnwindSafe for SignalWorkflowExecutionInput
impl Send for SignalWorkflowExecutionInput
impl Sync for SignalWorkflowExecutionInput
impl Unpin for SignalWorkflowExecutionInput
impl UnwindSafe for SignalWorkflowExecutionInput
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