Trait gurobi::Proxy [] [src]

pub trait Proxy: ProxyBase {
    fn get<A: AttrArrayBase>(&self, model: &Model, attr: A) -> Result<A::Out> { ... }
    fn set<A: AttrArrayBase>(&mut self, model: &mut Model, attr: A, val: A::Out) -> Result<()> { ... }
}

Provides methods to query/modify attributes associated with certain element.

Provided Methods

Query the value of attribute.

Set the value of attribute.

Implementors