pub struct ActionExecutionResult {
pub external_execution_id: Option<String>,
pub external_execution_summary: Option<String>,
pub external_execution_url: Option<String>,
}
Expand description
Execution result information, such as the external execution ID.
Fields§
§external_execution_id: Option<String>
The action provider's external ID for the action execution.
external_execution_summary: Option<String>
The action provider's summary for the action execution.
external_execution_url: Option<String>
The deepest external link to the external resource (for example, a repository URL or deployment endpoint) that is used when running the action.
Trait Implementations§
Source§impl Clone for ActionExecutionResult
impl Clone for ActionExecutionResult
Source§fn clone(&self) -> ActionExecutionResult
fn clone(&self) -> ActionExecutionResult
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 ActionExecutionResult
impl Debug for ActionExecutionResult
Source§impl Default for ActionExecutionResult
impl Default for ActionExecutionResult
Source§fn default() -> ActionExecutionResult
fn default() -> ActionExecutionResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionExecutionResult
impl<'de> Deserialize<'de> for ActionExecutionResult
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 ActionExecutionResult
impl PartialEq for ActionExecutionResult
impl StructuralPartialEq for ActionExecutionResult
Auto Trait Implementations§
impl Freeze for ActionExecutionResult
impl RefUnwindSafe for ActionExecutionResult
impl Send for ActionExecutionResult
impl Sync for ActionExecutionResult
impl Unpin for ActionExecutionResult
impl UnwindSafe for ActionExecutionResult
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