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