pub struct AutomationStepExecution {
pub step_name: String,
pub action: String,
pub step_status: String,
pub execution_start_time: Option<DateTime<Utc>>,
pub execution_end_time: Option<DateTime<Utc>>,
pub inputs: HashMap<String, String>,
pub outputs: HashMap<String, Vec<String>>,
pub step_execution_id: String,
}Fields§
§step_name: String§action: String§step_status: String§execution_start_time: Option<DateTime<Utc>>§execution_end_time: Option<DateTime<Utc>>§inputs: HashMap<String, String>§outputs: HashMap<String, Vec<String>>§step_execution_id: StringTrait Implementations§
Source§impl Clone for AutomationStepExecution
impl Clone for AutomationStepExecution
Source§fn clone(&self) -> AutomationStepExecution
fn clone(&self) -> AutomationStepExecution
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AutomationStepExecution
impl Debug for AutomationStepExecution
Source§impl<'de> Deserialize<'de> for AutomationStepExecution
impl<'de> Deserialize<'de> for AutomationStepExecution
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 AutomationStepExecution
impl RefUnwindSafe for AutomationStepExecution
impl Send for AutomationStepExecution
impl Sync for AutomationStepExecution
impl Unpin for AutomationStepExecution
impl UnsafeUnpin for AutomationStepExecution
impl UnwindSafe for AutomationStepExecution
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