pub struct WorkflowStartedData {
pub id: String,
pub workflow_id: String,
pub sequence_number: u32,
pub inputs: Value,
pub created_at: u64,
}
Expand description
workflow 详细内容
Fields§
§id: String
workflow 执行 ID
workflow_id: String
关联 Workflow ID
sequence_number: u32
自增序号,App 内自增,从 1 开始
inputs: Value
输入数据
created_at: u64
开始时间
Trait Implementations§
Source§impl Clone for WorkflowStartedData
impl Clone for WorkflowStartedData
Source§fn clone(&self) -> WorkflowStartedData
fn clone(&self) -> WorkflowStartedData
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 WorkflowStartedData
impl Debug for WorkflowStartedData
Source§impl<'de> Deserialize<'de> for WorkflowStartedData
impl<'de> Deserialize<'de> for WorkflowStartedData
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 WorkflowStartedData
impl RefUnwindSafe for WorkflowStartedData
impl Send for WorkflowStartedData
impl Sync for WorkflowStartedData
impl Unpin for WorkflowStartedData
impl UnwindSafe for WorkflowStartedData
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