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