#[non_exhaustive]pub struct ActionExecutionResultBuilder { /* private fields */ }
Expand description
A builder for ActionExecutionResult
.
Implementations§
source§impl ActionExecutionResultBuilder
impl ActionExecutionResultBuilder
sourcepub fn external_execution_id(self, input: impl Into<String>) -> Self
pub fn external_execution_id(self, input: impl Into<String>) -> Self
The action provider's external ID for the action execution.
sourcepub fn set_external_execution_id(self, input: Option<String>) -> Self
pub fn set_external_execution_id(self, input: Option<String>) -> Self
The action provider's external ID for the action execution.
sourcepub fn get_external_execution_id(&self) -> &Option<String>
pub fn get_external_execution_id(&self) -> &Option<String>
The action provider's external ID for the action execution.
sourcepub fn external_execution_summary(self, input: impl Into<String>) -> Self
pub fn external_execution_summary(self, input: impl Into<String>) -> Self
The action provider's summary for the action execution.
sourcepub fn set_external_execution_summary(self, input: Option<String>) -> Self
pub fn set_external_execution_summary(self, input: Option<String>) -> Self
The action provider's summary for the action execution.
sourcepub fn get_external_execution_summary(&self) -> &Option<String>
pub fn get_external_execution_summary(&self) -> &Option<String>
The action provider's summary for the action execution.
sourcepub fn external_execution_url(self, input: impl Into<String>) -> Self
pub fn external_execution_url(self, input: impl Into<String>) -> Self
The deepest external link to the external resource (for example, a repository URL or deployment endpoint) that is used when running the action.
sourcepub fn set_external_execution_url(self, input: Option<String>) -> Self
pub fn set_external_execution_url(self, input: Option<String>) -> Self
The deepest external link to the external resource (for example, a repository URL or deployment endpoint) that is used when running the action.
sourcepub fn get_external_execution_url(&self) -> &Option<String>
pub fn get_external_execution_url(&self) -> &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.
sourcepub fn build(self) -> ActionExecutionResult
pub fn build(self) -> ActionExecutionResult
Consumes the builder and constructs a ActionExecutionResult
.
Trait Implementations§
source§impl Clone for ActionExecutionResultBuilder
impl Clone for ActionExecutionResultBuilder
source§fn clone(&self) -> ActionExecutionResultBuilder
fn clone(&self) -> ActionExecutionResultBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ActionExecutionResultBuilder
impl Debug for ActionExecutionResultBuilder
source§impl Default for ActionExecutionResultBuilder
impl Default for ActionExecutionResultBuilder
source§fn default() -> ActionExecutionResultBuilder
fn default() -> ActionExecutionResultBuilder
source§impl PartialEq for ActionExecutionResultBuilder
impl PartialEq for ActionExecutionResultBuilder
source§fn eq(&self, other: &ActionExecutionResultBuilder) -> bool
fn eq(&self, other: &ActionExecutionResultBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.