pub struct IntegerParameterRangeSpecification {
pub max_value: String,
pub min_value: String,
}
Expand description
Defines the possible values for an integer hyperparameter.
Fields§
§max_value: String
The maximum integer value allowed.
min_value: String
The minimum integer value allowed.
Trait Implementations§
Source§impl Clone for IntegerParameterRangeSpecification
impl Clone for IntegerParameterRangeSpecification
Source§fn clone(&self) -> IntegerParameterRangeSpecification
fn clone(&self) -> IntegerParameterRangeSpecification
Returns a duplicate 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 IntegerParameterRangeSpecification
impl Default for IntegerParameterRangeSpecification
Source§fn default() -> IntegerParameterRangeSpecification
fn default() -> IntegerParameterRangeSpecification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegerParameterRangeSpecification
impl<'de> Deserialize<'de> for IntegerParameterRangeSpecification
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for IntegerParameterRangeSpecification
impl PartialEq for IntegerParameterRangeSpecification
Source§fn eq(&self, other: &IntegerParameterRangeSpecification) -> bool
fn eq(&self, other: &IntegerParameterRangeSpecification) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for IntegerParameterRangeSpecification
Auto Trait Implementations§
impl Freeze for IntegerParameterRangeSpecification
impl RefUnwindSafe for IntegerParameterRangeSpecification
impl Send for IntegerParameterRangeSpecification
impl Sync for IntegerParameterRangeSpecification
impl Unpin for IntegerParameterRangeSpecification
impl UnwindSafe for IntegerParameterRangeSpecification
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more