pub struct PmxHeader {
pub version: f32,
pub encoding: TextEncoding,
pub extra_uv_count: u8,
pub vertex_index_size: u8,
pub texture_index_size: u8,
pub material_index_size: u8,
pub bone_index_size: u8,
pub morph_index_size: u8,
pub rigidbody_index_size: u8,
}Fields§
§version: f32§encoding: TextEncoding§extra_uv_count: u8§vertex_index_size: u8§texture_index_size: u8§material_index_size: u8§bone_index_size: u8§morph_index_size: u8§rigidbody_index_size: u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for PmxHeader
impl RefUnwindSafe for PmxHeader
impl Send for PmxHeader
impl Sync for PmxHeader
impl Unpin for PmxHeader
impl UnsafeUnpin for PmxHeader
impl UnwindSafe for PmxHeader
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