#[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
sourceimpl 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
.
sourceimpl ActionTypeArtifactDetails
impl ActionTypeArtifactDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ActionTypeArtifactDetails
.
Trait Implementations
sourceimpl Clone for ActionTypeArtifactDetails
impl Clone for ActionTypeArtifactDetails
sourcefn clone(&self) -> ActionTypeArtifactDetails
fn clone(&self) -> ActionTypeArtifactDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ActionTypeArtifactDetails
impl Debug for ActionTypeArtifactDetails
sourceimpl PartialEq<ActionTypeArtifactDetails> for ActionTypeArtifactDetails
impl PartialEq<ActionTypeArtifactDetails> for ActionTypeArtifactDetails
sourcefn eq(&self, other: &ActionTypeArtifactDetails) -> bool
fn eq(&self, other: &ActionTypeArtifactDetails) -> bool
impl StructuralPartialEq for ActionTypeArtifactDetails
Auto Trait Implementations
impl RefUnwindSafe for ActionTypeArtifactDetails
impl Send for ActionTypeArtifactDetails
impl Sync for ActionTypeArtifactDetails
impl Unpin for ActionTypeArtifactDetails
impl UnwindSafe for ActionTypeArtifactDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more