pub struct hkPackfileSectionHeader {
pub __ptr: Option<Pointer>,
pub m_sectionTag: [char; 19],
pub m_nullByte: char,
pub m_absoluteDataStart: i32,
pub m_localFixupsOffset: i32,
pub m_globalFixupsOffset: i32,
pub m_virtualFixupsOffset: i32,
pub m_exportsOffset: i32,
pub m_importsOffset: i32,
pub m_endOffset: i32,
}
Expand description
§C++ Info
- name:
hkPackfileSectionHeader
- version:
0
- signature:
0xf2a92154
- size:
48
(x86)/48
(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_sectionTag: [char; 19]
§C++ Info
- name:
sectionTag
(ctype:hkChar[19]
) - offset:
0
(x86)/0
(x86_64) - type_size:
19
(x86)/19
(x86_64)
m_nullByte: char
§C++ Info
- name:
nullByte
(ctype:hkChar
) - offset:
19
(x86)/19
(x86_64) - type_size:
1
(x86)/1
(x86_64)
m_absoluteDataStart: i32
§C++ Info
- name:
absoluteDataStart
(ctype:hkInt32
) - offset:
20
(x86)/20
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_localFixupsOffset: i32
§C++ Info
- name:
localFixupsOffset
(ctype:hkInt32
) - offset:
24
(x86)/24
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_globalFixupsOffset: i32
§C++ Info
- name:
globalFixupsOffset
(ctype:hkInt32
) - offset:
28
(x86)/28
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_virtualFixupsOffset: i32
§C++ Info
- name:
virtualFixupsOffset
(ctype:hkInt32
) - offset:
32
(x86)/32
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_exportsOffset: i32
§C++ Info
- name:
exportsOffset
(ctype:hkInt32
) - offset:
36
(x86)/36
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_importsOffset: i32
§C++ Info
- name:
importsOffset
(ctype:hkInt32
) - offset:
40
(x86)/40
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_endOffset: i32
§C++ Info
- name:
endOffset
(ctype:hkInt32
) - offset:
44
(x86)/44
(x86_64) - type_size:
4
(x86)/4
(x86_64)
Trait Implementations§
Source§impl Clone for hkPackfileSectionHeader
impl Clone for hkPackfileSectionHeader
Source§impl Debug for hkPackfileSectionHeader
impl Debug for hkPackfileSectionHeader
Source§impl Default for hkPackfileSectionHeader
impl Default for hkPackfileSectionHeader
Source§impl<'de> Deserialize<'de> for hkPackfileSectionHeader
impl<'de> Deserialize<'de> for hkPackfileSectionHeader
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 hkPackfileSectionHeader
impl HavokClass for hkPackfileSectionHeader
Source§impl PartialEq for hkPackfileSectionHeader
impl PartialEq for hkPackfileSectionHeader
Auto Trait Implementations§
impl Freeze for hkPackfileSectionHeader
impl RefUnwindSafe for hkPackfileSectionHeader
impl Send for hkPackfileSectionHeader
impl Sync for hkPackfileSectionHeader
impl Unpin for hkPackfileSectionHeader
impl UnwindSafe for hkPackfileSectionHeader
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