pub struct ActionContext {
pub action_execution_id: Option<String>,
pub name: Option<String>,
}
Expand description
Represents the context of an action in the stage of a pipeline to a job worker.
Fields§
§action_execution_id: Option<String>
The system-generated unique ID that corresponds to an action's execution.
name: Option<String>
The name of the action in the context of a job.
Trait Implementations§
Source§impl Clone for ActionContext
impl Clone for ActionContext
Source§fn clone(&self) -> ActionContext
fn clone(&self) -> ActionContext
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 ActionContext
impl Debug for ActionContext
Source§impl Default for ActionContext
impl Default for ActionContext
Source§fn default() -> ActionContext
fn default() -> ActionContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionContext
impl<'de> Deserialize<'de> for ActionContext
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 ActionContext
impl PartialEq for ActionContext
impl StructuralPartialEq for ActionContext
Auto Trait Implementations§
impl Freeze for ActionContext
impl RefUnwindSafe for ActionContext
impl Send for ActionContext
impl Sync for ActionContext
impl Unpin for ActionContext
impl UnwindSafe for ActionContext
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