pub enum RowBasisStatus {
AtUpper = 0,
AtLower = 1,
Fixed = 2,
Basic = 4,
Unknown = 5,
}Expand description
Row basis status
Variants§
AtUpper = 0
row is set to its upper bound
AtLower = 1
row is set to its lower bound
Fixed = 2
row is fixed to its identical bounds
Basic = 4
row is basic
Unknown = 5
nothing known about basis status
Trait Implementations§
Source§impl Clone for RowBasisStatus
impl Clone for RowBasisStatus
Source§fn clone(&self) -> RowBasisStatus
fn clone(&self) -> RowBasisStatus
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 RowBasisStatus
impl Debug for RowBasisStatus
Source§impl From<i32> for RowBasisStatus
impl From<i32> for RowBasisStatus
Source§impl PartialEq for RowBasisStatus
impl PartialEq for RowBasisStatus
impl Copy for RowBasisStatus
impl Eq for RowBasisStatus
impl StructuralPartialEq for RowBasisStatus
Auto Trait Implementations§
impl Freeze for RowBasisStatus
impl RefUnwindSafe for RowBasisStatus
impl Send for RowBasisStatus
impl Sync for RowBasisStatus
impl Unpin for RowBasisStatus
impl UnwindSafe for RowBasisStatus
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