pub struct WorkflowActionRunRecord {
pub action_id: String,
pub action: String,
pub task_id: Option<String>,
pub status: WorkflowActionRunStatus,
pub detail: Option<String>,
pub output: Option<Value>,
pub updated_at_ms: u64,
}Fields§
§action_id: String§action: String§task_id: Option<String>§status: WorkflowActionRunStatus§detail: Option<String>§output: Option<Value>§updated_at_ms: u64Trait Implementations§
Source§impl Clone for WorkflowActionRunRecord
impl Clone for WorkflowActionRunRecord
Source§fn clone(&self) -> WorkflowActionRunRecord
fn clone(&self) -> WorkflowActionRunRecord
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 WorkflowActionRunRecord
impl Debug for WorkflowActionRunRecord
Source§impl<'de> Deserialize<'de> for WorkflowActionRunRecord
impl<'de> Deserialize<'de> for WorkflowActionRunRecord
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 WorkflowActionRunRecord
impl PartialEq for WorkflowActionRunRecord
Source§impl Serialize for WorkflowActionRunRecord
impl Serialize for WorkflowActionRunRecord
impl StructuralPartialEq for WorkflowActionRunRecord
Auto Trait Implementations§
impl Freeze for WorkflowActionRunRecord
impl RefUnwindSafe for WorkflowActionRunRecord
impl Send for WorkflowActionRunRecord
impl Sync for WorkflowActionRunRecord
impl Unpin for WorkflowActionRunRecord
impl UnsafeUnpin for WorkflowActionRunRecord
impl UnwindSafe for WorkflowActionRunRecord
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