pub struct ModelData {Show 16 fields
pub id: u32,
pub zoom: u16,
pub rotation1: u16,
pub rotation2: u16,
pub offset1: u16,
pub offset2: u16,
pub male_equip_id: u32,
pub female_equip_id: u32,
pub male_equip1: u32,
pub male_equip2: u32,
pub female_equip1: u32,
pub female_equip2: u32,
pub original_colors: Vec<u16>,
pub modified_colors: Vec<u16>,
pub original_texture_colors: Vec<u16>,
pub modified_texture_colors: Vec<u16>,
}Available on crate feature
rs3 only.Fields§
§id: u32§zoom: u16§rotation1: u16§rotation2: u16§offset1: u16§offset2: u16§male_equip_id: u32§female_equip_id: u32§male_equip1: u32§male_equip2: u32§female_equip1: u32§female_equip2: u32§original_colors: Vec<u16>§modified_colors: Vec<u16>§original_texture_colors: Vec<u16>§modified_texture_colors: Vec<u16>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ModelData
impl<'de> Deserialize<'de> for ModelData
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 ModelData
impl Ord for ModelData
Source§impl PartialOrd for ModelData
impl PartialOrd for ModelData
impl Eq for ModelData
impl StructuralPartialEq for ModelData
Auto Trait Implementations§
impl Freeze for ModelData
impl RefUnwindSafe for ModelData
impl Send for ModelData
impl Sync for ModelData
impl Unpin for ModelData
impl UnwindSafe for ModelData
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