pub struct WorkflowTask {Show 14 fields
pub task_id: String,
pub workflow_id: Option<String>,
pub run_id: Option<String>,
pub workflow_type: String,
pub payload_codec: String,
pub arguments: Option<Value>,
pub history_events: Vec<HistoryEvent>,
pub total_history_events: Option<u64>,
pub next_history_page_token: Option<String>,
pub workflow_task_attempt: u64,
pub workflow_signal_id: Option<String>,
pub signal_name: Option<String>,
pub signal_arguments: Option<Value>,
pub lease_owner: Option<String>,
}Fields§
§task_id: String§workflow_id: Option<String>§run_id: Option<String>§workflow_type: String§payload_codec: String§arguments: Option<Value>§history_events: Vec<HistoryEvent>§total_history_events: Option<u64>§next_history_page_token: Option<String>§workflow_task_attempt: u64§workflow_signal_id: Option<String>§signal_name: Option<String>§signal_arguments: Option<Value>§lease_owner: Option<String>Trait Implementations§
Source§impl Clone for WorkflowTask
impl Clone for WorkflowTask
Source§fn clone(&self) -> WorkflowTask
fn clone(&self) -> WorkflowTask
Returns a copy 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 WorkflowTask
impl Debug for WorkflowTask
Source§impl<'de> Deserialize<'de> for WorkflowTask
impl<'de> Deserialize<'de> for WorkflowTask
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
Auto Trait Implementations§
impl Freeze for WorkflowTask
impl RefUnwindSafe for WorkflowTask
impl Send for WorkflowTask
impl Sync for WorkflowTask
impl Unpin for WorkflowTask
impl UnwindSafe for WorkflowTask
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