pub enum LpResult {
Optimal {
objective: f64,
solution: Vec<f64>,
},
Infeasible,
Unbounded,
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LpResult
impl RefUnwindSafe for LpResult
impl Send for LpResult
impl Sync for LpResult
impl Unpin for LpResult
impl UnsafeUnpin for LpResult
impl UnwindSafe for LpResult
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