#[repr(C)]pub enum AiLightSourceType {
Undefined = 0,
Directional = 1,
Point = 2,
Spot = 3,
Ambient = 4,
Area = 5,
}Variants§
Trait Implementations§
Source§impl Clone for AiLightSourceType
impl Clone for AiLightSourceType
Source§fn clone(&self) -> AiLightSourceType
fn clone(&self) -> AiLightSourceType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AiLightSourceType
Source§impl Debug for AiLightSourceType
impl Debug for AiLightSourceType
impl Eq for AiLightSourceType
Source§impl PartialEq for AiLightSourceType
impl PartialEq for AiLightSourceType
Source§fn eq(&self, other: &AiLightSourceType) -> bool
fn eq(&self, other: &AiLightSourceType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AiLightSourceType
Auto Trait Implementations§
impl Freeze for AiLightSourceType
impl RefUnwindSafe for AiLightSourceType
impl Send for AiLightSourceType
impl Sync for AiLightSourceType
impl Unpin for AiLightSourceType
impl UnsafeUnpin for AiLightSourceType
impl UnwindSafe for AiLightSourceType
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