Enum entmet_lib::entities::entity::DisplayedSkinParts
source · #[repr(u8)]pub enum DisplayedSkinParts {
Cape = 1,
Jacket = 2,
LeftSleve = 4,
RightSleve = 8,
LeftPantsLeg = 16,
RightPantsLeg = 32,
Hat = 64,
Unused = 128,
}Expand description
An enum of the displayable skin parts
Variants§
Cape = 1
Jacket = 2
LeftSleve = 4
RightSleve = 8
LeftPantsLeg = 16
RightPantsLeg = 32
Hat = 64
Unused = 128
Trait Implementations§
source§impl Clone for DisplayedSkinParts
impl Clone for DisplayedSkinParts
source§fn clone(&self) -> DisplayedSkinParts
fn clone(&self) -> DisplayedSkinParts
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 Into<u8> for DisplayedSkinParts
impl Into<u8> for DisplayedSkinParts
source§impl PartialEq for DisplayedSkinParts
impl PartialEq for DisplayedSkinParts
source§fn eq(&self, other: &DisplayedSkinParts) -> bool
fn eq(&self, other: &DisplayedSkinParts) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for DisplayedSkinParts
impl Eq for DisplayedSkinParts
impl StructuralPartialEq for DisplayedSkinParts
Auto Trait Implementations§
impl Freeze for DisplayedSkinParts
impl RefUnwindSafe for DisplayedSkinParts
impl Send for DisplayedSkinParts
impl Sync for DisplayedSkinParts
impl Unpin for DisplayedSkinParts
impl UnwindSafe for DisplayedSkinParts
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