Struct good_lp::variable::UnsolvedProblem[][src]

pub struct UnsolvedProblem<F> { /* fields omitted */ }

A problem without constraints. Created with ProblemVariables::optimise.

Implementations

impl<F> UnsolvedProblem<F>[src]

pub fn using<S, G>(self, solver: S) -> G where
    S: FnOnce(UnsolvedProblem<F>) -> G, 
[src]

Create a solver instance and feed it with this problem

Auto Trait Implementations

impl<F> RefUnwindSafe for UnsolvedProblem<F> where
    F: RefUnwindSafe
[src]

impl<F> Send for UnsolvedProblem<F> where
    F: Send
[src]

impl<F> Sync for UnsolvedProblem<F> where
    F: Sync
[src]

impl<F> Unpin for UnsolvedProblem<F> where
    F: Unpin
[src]

impl<F> UnwindSafe for UnsolvedProblem<F> where
    F: UnwindSafe
[src]

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, 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.