Trait grb::parameter::ParamGet[][src]

pub trait ParamGet<V> {
    fn get(&self, env: &Env) -> Result<V>;
}

A queryable Gurobi parameter for a Model or Env

Required methods

fn get(&self, env: &Env) -> Result<V>[src]

This parameter's value type (string, double, int, char) Query a parameter from an environment

Loading content...

Implementors

impl ParamGet<f64> for &Undocumented[src]

impl ParamGet<f64> for DoubleParam[src]

impl ParamGet<i32> for &Undocumented[src]

impl ParamGet<i32> for IntParam[src]

impl ParamGet<String> for &Undocumented[src]

impl ParamGet<String> for StrParam[src]

Loading content...