Enum entmet_lib::entities::entity::ArmorStandInfo
source · #[repr(u8)]pub enum ArmorStandInfo {
Small = 1,
Arms = 4,
NoBasePlate = 8,
Marker = 16,
}Expand description
An enum of the options of an armor stand
Variants§
Small = 1
Whether it is small or not
Arms = 4
Whether it has arms or not
NoBasePlate = 8
Whether it has a baseplate or not
Marker = 16
Whether it is a marker or not
Trait Implementations§
source§impl Clone for ArmorStandInfo
impl Clone for ArmorStandInfo
source§fn clone(&self) -> ArmorStandInfo
fn clone(&self) -> ArmorStandInfo
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 ArmorStandInfo
impl Into<u8> for ArmorStandInfo
source§impl PartialEq for ArmorStandInfo
impl PartialEq for ArmorStandInfo
source§fn eq(&self, other: &ArmorStandInfo) -> bool
fn eq(&self, other: &ArmorStandInfo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for ArmorStandInfo
impl Eq for ArmorStandInfo
impl StructuralPartialEq for ArmorStandInfo
Auto Trait Implementations§
impl Freeze for ArmorStandInfo
impl RefUnwindSafe for ArmorStandInfo
impl Send for ArmorStandInfo
impl Sync for ArmorStandInfo
impl Unpin for ArmorStandInfo
impl UnwindSafe for ArmorStandInfo
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