Enum cplex_dynamic::VariableValue
source · [−]pub enum VariableValue {
Continuous(f64),
Binary(bool),
Integer(c_int),
SemiContinuous(f64),
SemiInteger(c_int),
}Variants
Continuous(f64)
Binary(bool)
Integer(c_int)
SemiContinuous(f64)
SemiInteger(c_int)
Trait Implementations
sourceimpl Clone for VariableValue
impl Clone for VariableValue
sourcefn clone(&self) -> VariableValue
fn clone(&self) -> VariableValue
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for VariableValue
impl Debug for VariableValue
sourceimpl PartialEq<VariableValue> for VariableValue
impl PartialEq<VariableValue> for VariableValue
sourcefn eq(&self, other: &VariableValue) -> bool
fn eq(&self, other: &VariableValue) -> bool
impl Copy for VariableValue
impl StructuralPartialEq for VariableValue
Auto Trait Implementations
impl RefUnwindSafe for VariableValue
impl Send for VariableValue
impl Sync for VariableValue
impl Unpin for VariableValue
impl UnwindSafe for VariableValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more