pub enum WmoLightType {
Omni = 0,
Spot = 1,
Directional = 2,
Ambient = 3,
}Expand description
Type of WMO light
Variants§
Omni = 0
Omnidirectional point light
Spot = 1
Spotlight
Directional = 2
Directional light
Ambient = 3
Ambient light
Implementations§
Trait Implementations§
Source§impl Clone for WmoLightType
impl Clone for WmoLightType
Source§fn clone(&self) -> WmoLightType
fn clone(&self) -> WmoLightType
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 WmoLightType
impl Debug for WmoLightType
Source§impl PartialEq for WmoLightType
impl PartialEq for WmoLightType
impl Copy for WmoLightType
impl Eq for WmoLightType
impl StructuralPartialEq for WmoLightType
Auto Trait Implementations§
impl Freeze for WmoLightType
impl RefUnwindSafe for WmoLightType
impl Send for WmoLightType
impl Sync for WmoLightType
impl Unpin for WmoLightType
impl UnwindSafe for WmoLightType
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