pub struct OutputArtifact {
pub name: String,
}
Expand description
Represents information about the output of an action.
Fields§
§name: String
The name of the output of an artifact, such as "My App".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
Trait Implementations§
Source§impl Clone for OutputArtifact
impl Clone for OutputArtifact
Source§fn clone(&self) -> OutputArtifact
fn clone(&self) -> OutputArtifact
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 OutputArtifact
impl Debug for OutputArtifact
Source§impl Default for OutputArtifact
impl Default for OutputArtifact
Source§fn default() -> OutputArtifact
fn default() -> OutputArtifact
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputArtifact
impl<'de> Deserialize<'de> for OutputArtifact
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 OutputArtifact
impl PartialEq for OutputArtifact
Source§impl Serialize for OutputArtifact
impl Serialize for OutputArtifact
impl StructuralPartialEq for OutputArtifact
Auto Trait Implementations§
impl Freeze for OutputArtifact
impl RefUnwindSafe for OutputArtifact
impl Send for OutputArtifact
impl Sync for OutputArtifact
impl Unpin for OutputArtifact
impl UnwindSafe for OutputArtifact
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