#[non_exhaustive]pub struct ActionTypeArtifactDetails { /* private fields */ }
Expand description
Information about parameters for artifacts associated with the action type, such as the minimum and maximum artifacts allowed.
Implementations§
source§impl ActionTypeArtifactDetails
impl ActionTypeArtifactDetails
sourcepub fn minimum_count(&self) -> i32
pub fn minimum_count(&self) -> i32
The minimum number of artifacts that can be used with the action type. For example, you should specify a minimum and maximum of zero input artifacts for an action type with a category of source
.
sourcepub fn maximum_count(&self) -> i32
pub fn maximum_count(&self) -> i32
The maximum number of artifacts that can be used with the actiontype. For example, you should specify a minimum and maximum of zero input artifacts for an action type with a category of source
.
source§impl ActionTypeArtifactDetails
impl ActionTypeArtifactDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ActionTypeArtifactDetails
.
Trait Implementations§
source§impl Clone for ActionTypeArtifactDetails
impl Clone for ActionTypeArtifactDetails
source§fn clone(&self) -> ActionTypeArtifactDetails
fn clone(&self) -> ActionTypeArtifactDetails
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 more