#[repr(u32)]pub enum VisualServerLightType {
LightDirectional = 0,
LightOmni = 1,
LightSpot = 2,
}Variants§
Trait Implementations§
Source§impl Clone for VisualServerLightType
impl Clone for VisualServerLightType
Source§fn clone(&self) -> VisualServerLightType
fn clone(&self) -> VisualServerLightType
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 VisualServerLightType
Source§impl Debug for VisualServerLightType
impl Debug for VisualServerLightType
impl Eq for VisualServerLightType
Source§impl Hash for VisualServerLightType
impl Hash for VisualServerLightType
Source§impl PartialEq for VisualServerLightType
impl PartialEq for VisualServerLightType
Source§fn eq(&self, other: &VisualServerLightType) -> bool
fn eq(&self, other: &VisualServerLightType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VisualServerLightType
Auto Trait Implementations§
impl Freeze for VisualServerLightType
impl RefUnwindSafe for VisualServerLightType
impl Send for VisualServerLightType
impl Sync for VisualServerLightType
impl Unpin for VisualServerLightType
impl UnsafeUnpin for VisualServerLightType
impl UnwindSafe for VisualServerLightType
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