#[repr(i32)]pub enum EntityProperty {
ENTITY_MATERIAL = 0,
ENTITY_SCALE = 1,
ENTITY_AABB_WORLD = 2,
ENTITY_ANIMBLEND_MODE = 3,
ENTITY_CAST_SHADOWS = 4,
}
Variants§
ENTITY_MATERIAL = 0
ENTITY_SCALE = 1
ENTITY_AABB_WORLD = 2
ENTITY_ANIMBLEND_MODE = 3
ENTITY_CAST_SHADOWS = 4
Trait Implementations§
Source§impl Clone for EntityProperty
impl Clone for EntityProperty
Source§fn clone(&self) -> EntityProperty
fn clone(&self) -> EntityProperty
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 EntityProperty
impl Debug for EntityProperty
Source§impl From<EntityProperty> for i32
impl From<EntityProperty> for i32
Source§fn from(v: EntityProperty) -> Self
fn from(v: EntityProperty) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EntityProperty
impl PartialEq for EntityProperty
Source§impl TryFrom<i32> for EntityProperty
impl TryFrom<i32> for EntityProperty
impl Copy for EntityProperty
impl Eq for EntityProperty
impl StructuralPartialEq for EntityProperty
Auto Trait Implementations§
impl Freeze for EntityProperty
impl RefUnwindSafe for EntityProperty
impl Send for EntityProperty
impl Sync for EntityProperty
impl Unpin for EntityProperty
impl UnwindSafe for EntityProperty
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