#[non_exhaustive]pub struct IntegerParameterRangeSpecificationBuilder { /* private fields */ }
Expand description
A builder for IntegerParameterRangeSpecification
.
Implementations§
source§impl IntegerParameterRangeSpecificationBuilder
impl IntegerParameterRangeSpecificationBuilder
sourcepub fn set_min_value(self, input: Option<String>) -> Self
pub fn set_min_value(self, input: Option<String>) -> Self
The minimum integer value allowed.
sourcepub fn set_max_value(self, input: Option<String>) -> Self
pub fn set_max_value(self, input: Option<String>) -> Self
The maximum integer value allowed.
sourcepub fn build(self) -> IntegerParameterRangeSpecification
pub fn build(self) -> IntegerParameterRangeSpecification
Consumes the builder and constructs a IntegerParameterRangeSpecification
.
Trait Implementations§
source§impl Clone for IntegerParameterRangeSpecificationBuilder
impl Clone for IntegerParameterRangeSpecificationBuilder
source§fn clone(&self) -> IntegerParameterRangeSpecificationBuilder
fn clone(&self) -> IntegerParameterRangeSpecificationBuilder
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 Default for IntegerParameterRangeSpecificationBuilder
impl Default for IntegerParameterRangeSpecificationBuilder
source§fn default() -> IntegerParameterRangeSpecificationBuilder
fn default() -> IntegerParameterRangeSpecificationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<IntegerParameterRangeSpecificationBuilder> for IntegerParameterRangeSpecificationBuilder
impl PartialEq<IntegerParameterRangeSpecificationBuilder> for IntegerParameterRangeSpecificationBuilder
source§fn eq(&self, other: &IntegerParameterRangeSpecificationBuilder) -> bool
fn eq(&self, other: &IntegerParameterRangeSpecificationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.