#[non_exhaustive]pub struct ActionTypeArtifactDetailsBuilder { /* private fields */ }
Expand description
A builder for ActionTypeArtifactDetails
.
Implementations§
source§impl ActionTypeArtifactDetailsBuilder
impl ActionTypeArtifactDetailsBuilder
sourcepub fn minimum_count(self, input: i32) -> Self
pub fn minimum_count(self, input: i32) -> Self
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 set_minimum_count(self, input: Option<i32>) -> Self
pub fn set_minimum_count(self, input: Option<i32>) -> Self
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 get_minimum_count(&self) -> &Option<i32>
pub fn get_minimum_count(&self) -> &Option<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, input: i32) -> Self
pub fn maximum_count(self, input: i32) -> Self
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
.
sourcepub fn set_maximum_count(self, input: Option<i32>) -> Self
pub fn set_maximum_count(self, input: Option<i32>) -> Self
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
.
sourcepub fn get_maximum_count(&self) -> &Option<i32>
pub fn get_maximum_count(&self) -> &Option<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
.
sourcepub fn build(self) -> ActionTypeArtifactDetails
pub fn build(self) -> ActionTypeArtifactDetails
Consumes the builder and constructs a ActionTypeArtifactDetails
.
Trait Implementations§
source§impl Clone for ActionTypeArtifactDetailsBuilder
impl Clone for ActionTypeArtifactDetailsBuilder
source§fn clone(&self) -> ActionTypeArtifactDetailsBuilder
fn clone(&self) -> ActionTypeArtifactDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ActionTypeArtifactDetailsBuilder
impl Default for ActionTypeArtifactDetailsBuilder
source§fn default() -> ActionTypeArtifactDetailsBuilder
fn default() -> ActionTypeArtifactDetailsBuilder
source§impl PartialEq for ActionTypeArtifactDetailsBuilder
impl PartialEq for ActionTypeArtifactDetailsBuilder
source§fn eq(&self, other: &ActionTypeArtifactDetailsBuilder) -> bool
fn eq(&self, other: &ActionTypeArtifactDetailsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.