Struct good_lp::variable::Variable[][src]

pub struct Variable<T> { /* fields omitted */ }

A variable in a problem

Trait Implementations

impl<F, RHS: Into<Expression<F>>> Add<RHS> for Variable<F>[src]

type Output = Expression<F>

The resulting type after applying the + operator.

impl<F> Clone for Variable<F>[src]

impl<F> Copy for Variable<F>[src]

impl<T: Debug> Debug for Variable<T>[src]

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

impl<F> Div<f64> for Variable<F>[src]

type Output = Expression<F>

The resulting type after applying the / operator.

impl<F> Div<i32> for Variable<F>[src]

type Output = Expression<F>

The resulting type after applying the / operator.

impl<F> Eq for Variable<F>[src]

impl<'a, F> From<&'a Variable<F>> for Expression<F>[src]

impl<F> From<Variable<F>> for Expression<F>[src]

impl<F> Hash for Variable<F>[src]

impl<F, N: Into<f64>> Mul<N> for Variable<F>[src]

type Output = Expression<F>

The resulting type after applying the * operator.

impl<F> PartialEq<Variable<F>> for Variable<F>[src]

impl<F, RHS: Into<Expression<F>>> Shl<RHS> for Variable<F>[src]

type Output = Constraint<F>

The resulting type after applying the << operator.

impl<F, RHS: Into<Expression<F>>> Shr<RHS> for Variable<F>[src]

type Output = Constraint<F>

The resulting type after applying the >> operator.

impl<F, RHS: Into<Expression<F>>> Sub<RHS> for Variable<F>[src]

type Output = Expression<F>

The resulting type after applying the - operator.

Auto Trait Implementations

impl<T> RefUnwindSafe for Variable<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Variable<T> where
    T: Send
[src]

impl<T> Sync for Variable<T> where
    T: Sync
[src]

impl<T> Unpin for Variable<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Variable<T> where
    T: 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> 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.