pub enum SizeClass {
None,
Small,
Medium,
Large,
Giant,
Colossal,
}Available on crate feature
wrath and (crate features shared or vanilla or tbc or wrath) only.Expand description
Used in the CreatureDisplayInfo.dbc, CreatureModelData.dbc and DeathThudLookups.dbc.
This type is not sent over the network, but is used in the game in another way.
Auto generated from the original wowm in file wow_message_parser/wowm/world/external/size_class.wowm:2:
enum SizeClass : i8 {
NONE = -1;
SMALL = 0;
MEDIUM = 1;
LARGE = 2;
GIANT = 3;
COLOSSAL = 4;
}Variants§
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SizeClass
impl<'de> Deserialize<'de> for SizeClass
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 Ord for SizeClass
impl Ord for SizeClass
Source§impl PartialOrd for SizeClass
impl PartialOrd for SizeClass
impl Copy for SizeClass
impl Eq for SizeClass
impl StructuralPartialEq for SizeClass
Auto Trait Implementations§
impl Freeze for SizeClass
impl RefUnwindSafe for SizeClass
impl Send for SizeClass
impl Sync for SizeClass
impl Unpin for SizeClass
impl UnwindSafe for SizeClass
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