pub enum VarType {
Interval,
Integer,
Real,
SetInterval,
SetInteger,
}Expand description
Variable types in the Jia language.
Variants§
Interval
An interval variable with start, end, and duration.
Integer
An integer decision variable.
Real
A continuous real-valued decision variable (LP).
SetInterval
A set of interval variables.
SetInteger
A set of integer variables.
Trait Implementations§
impl Eq for VarType
impl StructuralPartialEq for VarType
Auto Trait Implementations§
impl Freeze for VarType
impl RefUnwindSafe for VarType
impl Send for VarType
impl Sync for VarType
impl Unpin for VarType
impl UnsafeUnpin for VarType
impl UnwindSafe for VarType
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