[][src]Struct rusoto_sagemaker::TrialComponentParameterValue

pub struct TrialComponentParameterValue {
    pub number_value: Option<f64>,
    pub string_value: Option<String>,
}

The value of a hyperparameter. Only one of NumberValue or StringValue can be specified.

This object is specified in the CreateTrialComponent request.

Fields

number_value: Option<f64>

The numeric value of a numeric hyperparameter. If you specify a value for this parameter, you can't specify the StringValue parameter.

string_value: Option<String>

The string value of a categorical hyperparameter. If you specify a value for this parameter, you can't specify the NumberValue parameter.

Trait Implementations

impl Clone for TrialComponentParameterValue[src]

impl Debug for TrialComponentParameterValue[src]

impl Default for TrialComponentParameterValue[src]

impl<'de> Deserialize<'de> for TrialComponentParameterValue[src]

impl PartialEq<TrialComponentParameterValue> for TrialComponentParameterValue[src]

impl Serialize for TrialComponentParameterValue[src]

impl StructuralPartialEq for TrialComponentParameterValue[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.