pub struct PutActionRevisionOutput {
pub new_revision: Option<bool>,
pub pipeline_execution_id: Option<String>,
}
Expand description
Represents the output of a PutActionRevision
action.
Fields§
§new_revision: Option<bool>
Indicates whether the artifact revision was previously used in an execution of the specified pipeline.
pipeline_execution_id: Option<String>
The ID of the current workflow state of the pipeline.
Trait Implementations§
Source§impl Clone for PutActionRevisionOutput
impl Clone for PutActionRevisionOutput
Source§fn clone(&self) -> PutActionRevisionOutput
fn clone(&self) -> PutActionRevisionOutput
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 PutActionRevisionOutput
impl Debug for PutActionRevisionOutput
Source§impl Default for PutActionRevisionOutput
impl Default for PutActionRevisionOutput
Source§fn default() -> PutActionRevisionOutput
fn default() -> PutActionRevisionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PutActionRevisionOutput
impl<'de> Deserialize<'de> for PutActionRevisionOutput
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 PutActionRevisionOutput
impl PartialEq for PutActionRevisionOutput
impl StructuralPartialEq for PutActionRevisionOutput
Auto Trait Implementations§
impl Freeze for PutActionRevisionOutput
impl RefUnwindSafe for PutActionRevisionOutput
impl Send for PutActionRevisionOutput
impl Sync for PutActionRevisionOutput
impl Unpin for PutActionRevisionOutput
impl UnwindSafe for PutActionRevisionOutput
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