#[repr(u8)]pub enum BipedObject {
Show 27 variants
Head = 0,
Hair = 1,
Neck = 2,
Cuirass = 3,
Groin = 4,
Skirt = 5,
RightHand = 6,
LeftHand = 7,
RightWrist = 8,
LeftWrist = 9,
Shield = 10,
RightForearm = 11,
LeftForearm = 12,
RightUpperArm = 13,
LeftUpperArm = 14,
RightFoot = 15,
LeftFoot = 16,
RightAnkle = 17,
LeftAnkle = 18,
RightKnee = 19,
LeftKnee = 20,
RightUpperLeg = 21,
LeftUpperLeg = 22,
RightPauldron = 23,
LeftPauldron = 24,
Weapon = 25,
Tail = 26,
}
Variants§
Head = 0
Hair = 1
Neck = 2
Cuirass = 3
Groin = 4
Skirt = 5
RightHand = 6
LeftHand = 7
RightWrist = 8
LeftWrist = 9
Shield = 10
RightForearm = 11
LeftForearm = 12
RightUpperArm = 13
LeftUpperArm = 14
RightFoot = 15
LeftFoot = 16
RightAnkle = 17
LeftAnkle = 18
RightKnee = 19
LeftKnee = 20
RightUpperLeg = 21
LeftUpperLeg = 22
RightPauldron = 23
LeftPauldron = 24
Weapon = 25
Tail = 26
Implementations§
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 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 for BipedObject
impl PartialEq for BipedObject
Source§impl PartialOrd for BipedObject
impl PartialOrd for BipedObject
Source§impl Serialize for BipedObject
impl Serialize for BipedObject
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 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 FromStr for BipedObject
impl FromStr for BipedObject
impl Copy for BipedObject
impl Eq for BipedObject
impl StructuralPartialEq for BipedObject
Auto Trait Implementations§
impl Freeze for BipedObject
impl RefUnwindSafe for BipedObject
impl Send for BipedObject
impl Sync for BipedObject
impl Unpin for BipedObject
impl UnwindSafe for BipedObject
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more