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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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