pub enum SimplexVar {
Real,
Slack(usize),
NegativeSlack(usize),
Artificial(usize),
}Variants§
Trait Implementations§
Source§impl Clone for SimplexVar
impl Clone for SimplexVar
Source§fn clone(&self) -> SimplexVar
fn clone(&self) -> SimplexVar
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SimplexVar
impl Debug for SimplexVar
Source§impl PartialEq for SimplexVar
impl PartialEq for SimplexVar
impl StructuralPartialEq for SimplexVar
Auto Trait Implementations§
impl Freeze for SimplexVar
impl RefUnwindSafe for SimplexVar
impl Send for SimplexVar
impl Sync for SimplexVar
impl Unpin for SimplexVar
impl UnwindSafe for SimplexVar
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