pub enum StarLuminosity {
Show 26 variants
O = 25,
I = 24,
Ia0 = 23,
Ia = 22,
Ib = 21,
Iab = 20,
II = 19,
IIa = 18,
IIab = 17,
IIb = 16,
III = 15,
IIIa = 14,
IIIab = 13,
IIIb = 12,
IV = 11,
IVa = 10,
IVab = 9,
IVb = 8,
V = 7,
Va = 6,
Vab = 5,
Vb = 4,
Vz = 3,
VI = 2,
VII = 1,
Zero = 0,
}
Variants§
O = 25
I = 24
Ia0 = 23
Ia = 22
Ib = 21
Iab = 20
II = 19
IIa = 18
IIab = 17
IIb = 16
III = 15
IIIa = 14
IIIab = 13
IIIb = 12
IV = 11
IVa = 10
IVab = 9
IVb = 8
V = 7
Va = 6
Vab = 5
Vb = 4
Vz = 3
VI = 2
VII = 1
Zero = 0
Trait Implementations§
Source§impl Clone for StarLuminosity
impl Clone for StarLuminosity
Source§fn clone(&self) -> StarLuminosity
fn clone(&self) -> StarLuminosity
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 StarLuminosity
impl Debug for StarLuminosity
Source§impl<'de> Deserialize<'de> for StarLuminosity
impl<'de> Deserialize<'de> for StarLuminosity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for StarLuminosity
impl Display for StarLuminosity
Source§impl Hash for StarLuminosity
impl Hash for StarLuminosity
Source§impl Ord for StarLuminosity
impl Ord for StarLuminosity
Source§fn cmp(&self, other: &StarLuminosity) -> Ordering
fn cmp(&self, other: &StarLuminosity) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StarLuminosity
impl PartialEq for StarLuminosity
Source§impl PartialOrd for StarLuminosity
impl PartialOrd for StarLuminosity
Source§impl Serialize for StarLuminosity
impl Serialize for StarLuminosity
impl Eq for StarLuminosity
impl StructuralPartialEq for StarLuminosity
Auto Trait Implementations§
impl Freeze for StarLuminosity
impl RefUnwindSafe for StarLuminosity
impl Send for StarLuminosity
impl Sync for StarLuminosity
impl Unpin for StarLuminosity
impl UnwindSafe for StarLuminosity
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