pub struct hkPackfileHeader {Show 13 fields
pub __ptr: Option<Pointer>,
pub m_magic: [i32; 2],
pub m_userTag: i32,
pub m_fileVersion: i32,
pub m_layoutRules: [u8; 4],
pub m_numSections: i32,
pub m_contentsSectionIndex: i32,
pub m_contentsSectionOffset: i32,
pub m_contentsClassNameSectionIndex: i32,
pub m_contentsClassNameSectionOffset: i32,
pub m_contentsVersion: [char; 16],
pub m_flags: i32,
pub m_pad: [i32; 1],
}
Expand description
§C++ Info
- name:
hkPackfileHeader
- version:
1
- signature:
0x79f9ffda
- size:
64
(x86)/64
(x86_64) - vtable:
false
Fields§
§__ptr: Option<Pointer>
§Unique index for this class
- Represents a pointer on XML (
<hkobject name="#0001"></hkobject>
) Option::None
=> This class isclass in field
.(<hkobject></hkobject>
)
§Note
Not present in the binary & Not exist actual C++ field.
m_magic: [i32; 2]
§C++ Info
- name:
magic
(ctype:hkInt32[2]
) - offset:
0
(x86)/0
(x86_64) - type_size:
8
(x86)/8
(x86_64)
m_userTag: i32
§C++ Info
- name:
userTag
(ctype:hkInt32
) - offset:
8
(x86)/8
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_fileVersion: i32
§C++ Info
- name:
fileVersion
(ctype:hkInt32
) - offset:
12
(x86)/12
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_layoutRules: [u8; 4]
§C++ Info
- name:
layoutRules
(ctype:hkUint8[4]
) - offset:
16
(x86)/16
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_numSections: i32
§C++ Info
- name:
numSections
(ctype:hkInt32
) - offset:
20
(x86)/20
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_contentsSectionIndex: i32
§C++ Info
- name:
contentsSectionIndex
(ctype:hkInt32
) - offset:
24
(x86)/24
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_contentsSectionOffset: i32
§C++ Info
- name:
contentsSectionOffset
(ctype:hkInt32
) - offset:
28
(x86)/28
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_contentsClassNameSectionIndex: i32
§C++ Info
- name:
contentsClassNameSectionIndex
(ctype:hkInt32
) - offset:
32
(x86)/32
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_contentsClassNameSectionOffset: i32
§C++ Info
- name:
contentsClassNameSectionOffset
(ctype:hkInt32
) - offset:
36
(x86)/36
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_contentsVersion: [char; 16]
§C++ Info
- name:
contentsVersion
(ctype:hkChar[16]
) - offset:
40
(x86)/40
(x86_64) - type_size:
16
(x86)/16
(x86_64)
m_flags: i32
§C++ Info
- name:
flags
(ctype:hkInt32
) - offset:
56
(x86)/56
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_pad: [i32; 1]
§C++ Info
- name:
pad
(ctype:hkInt32[1]
) - offset:
60
(x86)/60
(x86_64) - type_size:
4
(x86)/4
(x86_64)
Trait Implementations§
Source§impl Clone for hkPackfileHeader
impl Clone for hkPackfileHeader
Source§impl Debug for hkPackfileHeader
impl Debug for hkPackfileHeader
Source§impl Default for hkPackfileHeader
impl Default for hkPackfileHeader
Source§impl<'de> Deserialize<'de> for hkPackfileHeader
impl<'de> Deserialize<'de> for hkPackfileHeader
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 HavokClass for hkPackfileHeader
impl HavokClass for hkPackfileHeader
Source§impl PartialEq for hkPackfileHeader
impl PartialEq for hkPackfileHeader
Auto Trait Implementations§
impl Freeze for hkPackfileHeader
impl RefUnwindSafe for hkPackfileHeader
impl Send for hkPackfileHeader
impl Sync for hkPackfileHeader
impl Unpin for hkPackfileHeader
impl UnwindSafe for hkPackfileHeader
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