#[repr(usize)]pub enum DegreeLoweringAuxColumn {
Show 38 variants
DegreeLoweringAuxCol0 = 0,
DegreeLoweringAuxCol1 = 1,
DegreeLoweringAuxCol2 = 2,
DegreeLoweringAuxCol3 = 3,
DegreeLoweringAuxCol4 = 4,
DegreeLoweringAuxCol5 = 5,
DegreeLoweringAuxCol6 = 6,
DegreeLoweringAuxCol7 = 7,
DegreeLoweringAuxCol8 = 8,
DegreeLoweringAuxCol9 = 9,
DegreeLoweringAuxCol10 = 10,
DegreeLoweringAuxCol11 = 11,
DegreeLoweringAuxCol12 = 12,
DegreeLoweringAuxCol13 = 13,
DegreeLoweringAuxCol14 = 14,
DegreeLoweringAuxCol15 = 15,
DegreeLoweringAuxCol16 = 16,
DegreeLoweringAuxCol17 = 17,
DegreeLoweringAuxCol18 = 18,
DegreeLoweringAuxCol19 = 19,
DegreeLoweringAuxCol20 = 20,
DegreeLoweringAuxCol21 = 21,
DegreeLoweringAuxCol22 = 22,
DegreeLoweringAuxCol23 = 23,
DegreeLoweringAuxCol24 = 24,
DegreeLoweringAuxCol25 = 25,
DegreeLoweringAuxCol26 = 26,
DegreeLoweringAuxCol27 = 27,
DegreeLoweringAuxCol28 = 28,
DegreeLoweringAuxCol29 = 29,
DegreeLoweringAuxCol30 = 30,
DegreeLoweringAuxCol31 = 31,
DegreeLoweringAuxCol32 = 32,
DegreeLoweringAuxCol33 = 33,
DegreeLoweringAuxCol34 = 34,
DegreeLoweringAuxCol35 = 35,
DegreeLoweringAuxCol36 = 36,
DegreeLoweringAuxCol37 = 37,
}
Variants§
DegreeLoweringAuxCol0 = 0
DegreeLoweringAuxCol1 = 1
DegreeLoweringAuxCol2 = 2
DegreeLoweringAuxCol3 = 3
DegreeLoweringAuxCol4 = 4
DegreeLoweringAuxCol5 = 5
DegreeLoweringAuxCol6 = 6
DegreeLoweringAuxCol7 = 7
DegreeLoweringAuxCol8 = 8
DegreeLoweringAuxCol9 = 9
DegreeLoweringAuxCol10 = 10
DegreeLoweringAuxCol11 = 11
DegreeLoweringAuxCol12 = 12
DegreeLoweringAuxCol13 = 13
DegreeLoweringAuxCol14 = 14
DegreeLoweringAuxCol15 = 15
DegreeLoweringAuxCol16 = 16
DegreeLoweringAuxCol17 = 17
DegreeLoweringAuxCol18 = 18
DegreeLoweringAuxCol19 = 19
DegreeLoweringAuxCol20 = 20
DegreeLoweringAuxCol21 = 21
DegreeLoweringAuxCol22 = 22
DegreeLoweringAuxCol23 = 23
DegreeLoweringAuxCol24 = 24
DegreeLoweringAuxCol25 = 25
DegreeLoweringAuxCol26 = 26
DegreeLoweringAuxCol27 = 27
DegreeLoweringAuxCol28 = 28
DegreeLoweringAuxCol29 = 29
DegreeLoweringAuxCol30 = 30
DegreeLoweringAuxCol31 = 31
DegreeLoweringAuxCol32 = 32
DegreeLoweringAuxCol33 = 33
DegreeLoweringAuxCol34 = 34
DegreeLoweringAuxCol35 = 35
DegreeLoweringAuxCol36 = 36
DegreeLoweringAuxCol37 = 37
Trait Implementations§
Source§impl Clone for DegreeLoweringAuxColumn
impl Clone for DegreeLoweringAuxColumn
Source§fn clone(&self) -> DegreeLoweringAuxColumn
fn clone(&self) -> DegreeLoweringAuxColumn
Returns a copy 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 DegreeLoweringAuxColumn
impl Debug for DegreeLoweringAuxColumn
Source§impl Display for DegreeLoweringAuxColumn
impl Display for DegreeLoweringAuxColumn
Source§impl Hash for DegreeLoweringAuxColumn
impl Hash for DegreeLoweringAuxColumn
Source§impl PartialEq for DegreeLoweringAuxColumn
impl PartialEq for DegreeLoweringAuxColumn
impl Copy for DegreeLoweringAuxColumn
impl Eq for DegreeLoweringAuxColumn
impl StructuralPartialEq for DegreeLoweringAuxColumn
Auto Trait Implementations§
impl Freeze for DegreeLoweringAuxColumn
impl RefUnwindSafe for DegreeLoweringAuxColumn
impl Send for DegreeLoweringAuxColumn
impl Sync for DegreeLoweringAuxColumn
impl Unpin for DegreeLoweringAuxColumn
impl UnwindSafe for DegreeLoweringAuxColumn
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more