pub struct ActionExecutionOutput {
pub execution_result: Option<ActionExecutionResult>,
pub output_artifacts: Option<Vec<ArtifactDetail>>,
pub output_variables: Option<HashMap<String, String>>,
}
Expand description
Output details listed for an action execution, such as the action execution result.
Fields§
§execution_result: Option<ActionExecutionResult>
Execution result information listed in the output details for an action execution.
output_artifacts: Option<Vec<ArtifactDetail>>
Details of output artifacts of the action that correspond to the action execution.
output_variables: Option<HashMap<String, String>>
The outputVariables field shows the key-value pairs that were output as part of that execution.
Trait Implementations§
Source§impl Clone for ActionExecutionOutput
impl Clone for ActionExecutionOutput
Source§fn clone(&self) -> ActionExecutionOutput
fn clone(&self) -> ActionExecutionOutput
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 ActionExecutionOutput
impl Debug for ActionExecutionOutput
Source§impl Default for ActionExecutionOutput
impl Default for ActionExecutionOutput
Source§fn default() -> ActionExecutionOutput
fn default() -> ActionExecutionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionExecutionOutput
impl<'de> Deserialize<'de> for ActionExecutionOutput
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 ActionExecutionOutput
impl PartialEq for ActionExecutionOutput
impl StructuralPartialEq for ActionExecutionOutput
Auto Trait Implementations§
impl Freeze for ActionExecutionOutput
impl RefUnwindSafe for ActionExecutionOutput
impl Send for ActionExecutionOutput
impl Sync for ActionExecutionOutput
impl Unpin for ActionExecutionOutput
impl UnwindSafe for ActionExecutionOutput
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