Enum esl::BipedObject
source · #[repr(u8)]
pub enum BipedObject {
Show 27 variants
Head,
Hair,
Neck,
Cuirass,
Groin,
Skirt,
RightHand,
LeftHand,
RightWrist,
LeftWrist,
Shield,
RightForearm,
LeftForearm,
RightUpperArm,
LeftUpperArm,
RightFoot,
LeftFoot,
RightAnkle,
LeftAnkle,
RightKnee,
LeftKnee,
RightUpperLeg,
LeftUpperLeg,
RightPauldron,
LeftPauldron,
Weapon,
Tail,
}
Variants§
Head
Hair
Neck
Cuirass
Groin
Skirt
RightHand
LeftHand
RightWrist
LeftWrist
Shield
RightForearm
LeftForearm
RightUpperArm
LeftUpperArm
RightFoot
LeftFoot
RightAnkle
LeftAnkle
RightKnee
LeftKnee
RightUpperLeg
LeftUpperLeg
RightPauldron
LeftPauldron
Weapon
Tail
Implementations§
source§impl BipedObject
impl BipedObject
Trait Implementations§
source§impl Clone for BipedObject
impl Clone for BipedObject
source§fn clone(&self) -> BipedObject
fn clone(&self) -> BipedObject
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 BipedObject
impl Debug for BipedObject
source§impl<'de> Deserialize<'de> for BipedObject
impl<'de> Deserialize<'de> for BipedObject
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for BipedObject
impl Display for BipedObject
source§fn fmt(&self, f: &mut std_fmt_Formatter<'_>) -> std_fmt_Result
fn fmt(&self, f: &mut std_fmt_Formatter<'_>) -> std_fmt_Result
Formats the value using the given formatter. Read more
source§impl From<BipedObject> for Field
impl From<BipedObject> for Field
source§fn from(v: BipedObject) -> Self
fn from(v: BipedObject) -> Self
Converts to this type from the input type.
source§impl FromStr for BipedObject
impl FromStr for BipedObject
source§impl Hash for BipedObject
impl Hash for BipedObject
source§impl Ord for BipedObject
impl Ord for BipedObject
source§fn cmp(&self, other: &BipedObject) -> Ordering
fn cmp(&self, other: &BipedObject) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<BipedObject> for BipedObject
impl PartialEq<BipedObject> for BipedObject
source§fn eq(&self, other: &BipedObject) -> bool
fn eq(&self, other: &BipedObject) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<BipedObject> for BipedObject
impl PartialOrd<BipedObject> for BipedObject
source§fn partial_cmp(&self, other: &BipedObject) -> Option<Ordering>
fn partial_cmp(&self, other: &BipedObject) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more