pub enum LightsNum {
NumLights1 = 1,
NumLights2 = 2,
NumLights3 = 3,
NumLights4 = 4,
NumLights5 = 5,
NumLights6 = 6,
NumLights7 = 7,
}Expand description
NUMLIGHTS_0 is absent from this enum because it just expands to
NUMLIGHTS_1, making them indistinguishable from each other.
Variants§
NumLights1 = 1
1 diffuse light.
NumLights2 = 2
2 diffuse lights.
NumLights3 = 3
3 diffuse lights.
NumLights4 = 4
4 diffuse lights.
NumLights5 = 5
5 diffuse lights.
NumLights6 = 6
6 diffuse lights.
NumLights7 = 7
7 diffuse lights.
Trait Implementations§
Source§impl Ord for LightsNum
impl Ord for LightsNum
Source§impl PartialOrd for LightsNum
impl PartialOrd for LightsNum
impl Copy for LightsNum
impl Eq for LightsNum
impl StructuralPartialEq for LightsNum
Auto Trait Implementations§
impl Freeze for LightsNum
impl RefUnwindSafe for LightsNum
impl Send for LightsNum
impl Sync for LightsNum
impl Unpin for LightsNum
impl UnwindSafe for LightsNum
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