Struct lp_solvers::solvers::StaticSolver[][src]

pub struct StaticSolver<T>(_);

A static version of a solver, where the solver itself doesn’t hold any data

use lp_solvers::solvers::{StaticSolver, CbcSolver};
const STATIC_SOLVER : StaticSolver<CbcSolver> = StaticSolver::new();

Implementations

impl<T> StaticSolver<T>[src]

pub const fn new() -> Self[src]

Create a new static solver

Trait Implementations

impl<T: Clone> Clone for StaticSolver<T>[src]

impl<T: Copy> Copy for StaticSolver<T>[src]

impl<T: Default> Default for StaticSolver<T>[src]

impl<T: SolverTrait + Default> SolverTrait for StaticSolver<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for StaticSolver<T> where
    T: RefUnwindSafe

impl<T> Send for StaticSolver<T> where
    T: Send

impl<T> Sync for StaticSolver<T> where
    T: Sync

impl<T> Unpin for StaticSolver<T> where
    T: Unpin

impl<T> UnwindSafe for StaticSolver<T> where
    T: UnwindSafe

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> From<T> for T[src]

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,