#[non_exhaustive]pub struct IntegerHyperParameterRange {
pub name: Option<String>,
pub min_value: i32,
pub max_value: i32,
}
Expand description
Provides the name and range of an integer-valued hyperparameter.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the hyperparameter.
min_value: i32
The minimum allowable value for the hyperparameter.
max_value: i32
The maximum allowable value for the hyperparameter.
Implementations§
source§impl IntegerHyperParameterRange
impl IntegerHyperParameterRange
sourcepub fn builder() -> IntegerHyperParameterRangeBuilder
pub fn builder() -> IntegerHyperParameterRangeBuilder
Creates a new builder-style object to manufacture IntegerHyperParameterRange
.
Trait Implementations§
source§impl Clone for IntegerHyperParameterRange
impl Clone for IntegerHyperParameterRange
source§fn clone(&self) -> IntegerHyperParameterRange
fn clone(&self) -> IntegerHyperParameterRange
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 Debug for IntegerHyperParameterRange
impl Debug for IntegerHyperParameterRange
source§impl PartialEq for IntegerHyperParameterRange
impl PartialEq for IntegerHyperParameterRange
source§fn eq(&self, other: &IntegerHyperParameterRange) -> bool
fn eq(&self, other: &IntegerHyperParameterRange) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IntegerHyperParameterRange
Auto Trait Implementations§
impl RefUnwindSafe for IntegerHyperParameterRange
impl Send for IntegerHyperParameterRange
impl Sync for IntegerHyperParameterRange
impl Unpin for IntegerHyperParameterRange
impl UnwindSafe for IntegerHyperParameterRange
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.