#[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 copy 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 VisualServerInstanceType
impl Debug for VisualServerInstanceType
Source§impl Hash for VisualServerInstanceType
impl Hash for VisualServerInstanceType
Source§impl PartialEq for VisualServerInstanceType
impl PartialEq for VisualServerInstanceType
impl Copy for VisualServerInstanceType
impl Eq for VisualServerInstanceType
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 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