#[repr(u32)]pub enum VisualServerInstanceType {
InstanceNone = 0,
InstanceMesh = 1,
InstanceMultimesh = 2,
InstanceImmediate = 3,
InstanceParticles = 4,
InstanceLight = 5,
InstanceReflectionProbe = 6,
InstanceGiProbe = 7,
InstanceLightmapCapture = 8,
InstanceMax = 9,
InstanceGeometryMask = 30,
}Variants§
InstanceNone = 0
InstanceMesh = 1
InstanceMultimesh = 2
InstanceImmediate = 3
InstanceParticles = 4
InstanceLight = 5
InstanceReflectionProbe = 6
InstanceGiProbe = 7
InstanceLightmapCapture = 8
InstanceMax = 9
InstanceGeometryMask = 30
Trait Implementations§
Source§impl Clone for VisualServerInstanceType
impl Clone for VisualServerInstanceType
Source§fn clone(&self) -> VisualServerInstanceType
fn clone(&self) -> VisualServerInstanceType
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 VisualServerInstanceType
Source§impl Debug for VisualServerInstanceType
impl Debug for VisualServerInstanceType
impl Eq for VisualServerInstanceType
Source§impl Hash for VisualServerInstanceType
impl Hash for VisualServerInstanceType
Source§impl PartialEq for VisualServerInstanceType
impl PartialEq for VisualServerInstanceType
Source§fn eq(&self, other: &VisualServerInstanceType) -> bool
fn eq(&self, other: &VisualServerInstanceType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VisualServerInstanceType
Auto Trait Implementations§
impl Freeze for VisualServerInstanceType
impl RefUnwindSafe for VisualServerInstanceType
impl Send for VisualServerInstanceType
impl Sync for VisualServerInstanceType
impl Unpin for VisualServerInstanceType
impl UnsafeUnpin for VisualServerInstanceType
impl UnwindSafe for VisualServerInstanceType
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