BayesianOptResult

Type Alias BayesianOptResult 

Source
pub type BayesianOptResult<T> = Result<T, BayesianOptError>;
Expand description

Result type for Bayesian optimization operations

Aliased Type§

pub enum BayesianOptResult<T> {
    Ok(T),
    Err(BayesianOptError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(BayesianOptError)

Contains the error value