Struct BbmHeader

Source
pub struct BbmHeader {
Show 27 fields pub unknown1: String, pub selection_present: u8, pub unknown2: Vec<f32>, pub hpnt_count: u16, pub hdmy_count: u16, pub hlpr_index_uncompressed: u32, pub padding: u16, pub hpnt_compressed: u16, pub helper_points: Vec<BbmHelperPoint>, pub hdmy_compressed: u16, pub helper_dummies: Vec<BbmHelperDummy>, pub hlpr_index_compressed: u16, pub hpnt_index_size: u16, pub hpnt_index: Vec<u8>, pub hdmy_index: Vec<u8>, pub material_count: u32, pub surface_count: u32, pub bone_count: u32, pub bone_index_size: u32, pub unknown3: u16, pub unknown4: u16, pub unknown5: u16, pub compressed: u16, pub bone_index_reference: Vec<u16>, pub bone_index_compressed: u16, pub bone_index: Vec<u8>, pub compressed_size: u16,
}

Fields§

§unknown1: String§selection_present: u8§unknown2: Vec<f32>§hpnt_count: u16§hdmy_count: u16§hlpr_index_uncompressed: u32§padding: u16§hpnt_compressed: u16§helper_points: Vec<BbmHelperPoint>§hdmy_compressed: u16§helper_dummies: Vec<BbmHelperDummy>§hlpr_index_compressed: u16§hpnt_index_size: u16§hpnt_index: Vec<u8>§hdmy_index: Vec<u8>§material_count: u32§surface_count: u32§bone_count: u32§bone_index_size: u32§unknown3: u16§unknown4: u16§unknown5: u16§compressed: u16§bone_index_reference: Vec<u16>§bone_index_compressed: u16§bone_index: Vec<u8>§compressed_size: u16

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.