pub struct RequestCancelWorkflowExecutionInput {
pub domain: String,
pub run_id: Option<String>,
pub workflow_id: String,
}
Fields§
§domain: String
The name of the domain containing the workflow execution to cancel.
run_id: Option<String>
The runId of the workflow execution to cancel.
workflow_id: String
The workflowId of the workflow execution to cancel.
Trait Implementations§
Source§impl Clone for RequestCancelWorkflowExecutionInput
impl Clone for RequestCancelWorkflowExecutionInput
Source§fn clone(&self) -> RequestCancelWorkflowExecutionInput
fn clone(&self) -> RequestCancelWorkflowExecutionInput
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 Default for RequestCancelWorkflowExecutionInput
impl Default for RequestCancelWorkflowExecutionInput
Source§fn default() -> RequestCancelWorkflowExecutionInput
fn default() -> RequestCancelWorkflowExecutionInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for RequestCancelWorkflowExecutionInput
impl PartialEq for RequestCancelWorkflowExecutionInput
Source§fn eq(&self, other: &RequestCancelWorkflowExecutionInput) -> bool
fn eq(&self, other: &RequestCancelWorkflowExecutionInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RequestCancelWorkflowExecutionInput
Auto Trait Implementations§
impl Freeze for RequestCancelWorkflowExecutionInput
impl RefUnwindSafe for RequestCancelWorkflowExecutionInput
impl Send for RequestCancelWorkflowExecutionInput
impl Sync for RequestCancelWorkflowExecutionInput
impl Unpin for RequestCancelWorkflowExecutionInput
impl UnwindSafe for RequestCancelWorkflowExecutionInput
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