pub struct InputArtifact {
pub name: String,
}
Expand description
Represents information about an artifact to be worked on, such as a test or build artifact.
Fields§
§name: String
The name of the artifact to be worked on (for example, "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.
Trait Implementations§
Source§impl Clone for InputArtifact
impl Clone for InputArtifact
Source§fn clone(&self) -> InputArtifact
fn clone(&self) -> InputArtifact
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 InputArtifact
impl Debug for InputArtifact
Source§impl Default for InputArtifact
impl Default for InputArtifact
Source§fn default() -> InputArtifact
fn default() -> InputArtifact
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputArtifact
impl<'de> Deserialize<'de> for InputArtifact
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 InputArtifact
impl PartialEq for InputArtifact
Source§impl Serialize for InputArtifact
impl Serialize for InputArtifact
impl StructuralPartialEq for InputArtifact
Auto Trait Implementations§
impl Freeze for InputArtifact
impl RefUnwindSafe for InputArtifact
impl Send for InputArtifact
impl Sync for InputArtifact
impl Unpin for InputArtifact
impl UnwindSafe for InputArtifact
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