pub struct ActionState {
pub action_name: Option<String>,
pub current_revision: Option<ActionRevision>,
pub entity_url: Option<String>,
pub latest_execution: Option<ActionExecution>,
pub revision_url: Option<String>,
}
Expand description
Represents information about the state of an action.
Fields§
§action_name: Option<String>
The name of the action.
current_revision: Option<ActionRevision>
Represents information about the version (or revision) of an action.
entity_url: Option<String>
A URL link for more information about the state of the action, such as a deployment group details page.
latest_execution: Option<ActionExecution>
Represents information about the run of an action.
revision_url: Option<String>
A URL link for more information about the revision, such as a commit details page.
Trait Implementations§
Source§impl Clone for ActionState
impl Clone for ActionState
Source§fn clone(&self) -> ActionState
fn clone(&self) -> ActionState
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 ActionState
impl Debug for ActionState
Source§impl Default for ActionState
impl Default for ActionState
Source§fn default() -> ActionState
fn default() -> ActionState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionState
impl<'de> Deserialize<'de> for ActionState
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 ActionState
impl PartialEq for ActionState
impl StructuralPartialEq for ActionState
Auto Trait Implementations§
impl Freeze for ActionState
impl RefUnwindSafe for ActionState
impl Send for ActionState
impl Sync for ActionState
impl Unpin for ActionState
impl UnwindSafe for ActionState
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