pub struct hkpSerializedAgentNnEntry {Show 16 fields
pub __ptr: Option<Pointer>,
pub parent: hkReferencedObject,
pub m_bodyA: Pointer,
pub m_bodyB: Pointer,
pub m_bodyAId: Ulong,
pub m_bodyBId: Ulong,
pub m_useEntityIds: bool,
pub m_agentType: SerializedAgentType,
pub m_atom: hkpSimpleContactConstraintAtom,
pub m_propertiesStream: Vec<u8>,
pub m_contactPoints: Vec<hkContactPoint>,
pub m_cpIdMgr: Vec<u8>,
pub m_nnEntryData: [u8; 160],
pub m_trackInfo: hkpSerializedTrack1nInfo,
pub m_endianCheckBuffer: [u8; 4],
pub m_version: u32,
}Expand description
§C++ Info
- name:
hkpSerializedAgentNnEntry - version:
0 - signature:
0x49ec7de3 - size:
320(x86)/368(x86_64) - vtable:
true
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.
parent: hkReferencedObjectAlternative to C++ class inheritance.
m_bodyA: Pointer§C++ Info
- name:
bodyA(ctype:struct hkpEntity*) - offset:
8(x86)/16(x86_64) - type_size:
4(x86)/8(x86_64)
m_bodyB: Pointer§C++ Info
- name:
bodyB(ctype:struct hkpEntity*) - offset:
12(x86)/24(x86_64) - type_size:
4(x86)/8(x86_64)
m_bodyAId: Ulong§C++ Info
- name:
bodyAId(ctype:hkUlong) - offset:
16(x86)/32(x86_64) - type_size:
4(x86)/8(x86_64)
m_bodyBId: Ulong§C++ Info
- name:
bodyBId(ctype:hkUlong) - offset:
20(x86)/40(x86_64) - type_size:
4(x86)/8(x86_64)
m_useEntityIds: bool§C++ Info
- name:
useEntityIds(ctype:hkBool) - offset:
24(x86)/48(x86_64) - type_size:
1(x86)/1(x86_64)
m_agentType: SerializedAgentType§C++ Info
- name:
agentType(ctype:enum SerializedAgentType) - offset:
25(x86)/49(x86_64) - type_size:
1(x86)/1(x86_64)
m_atom: hkpSimpleContactConstraintAtom§C++ Info
- name:
atom(ctype:struct hkpSimpleContactConstraintAtom) - offset:
32(x86)/64(x86_64) - type_size:
48(x86)/48(x86_64)
m_propertiesStream: Vec<u8>§C++ Info
- name:
propertiesStream(ctype:hkArray<hkUint8>) - offset:
80(x86)/112(x86_64) - type_size:
12(x86)/16(x86_64)
m_contactPoints: Vec<hkContactPoint>§C++ Info
- name:
contactPoints(ctype:hkArray<struct hkContactPoint>) - offset:
92(x86)/128(x86_64) - type_size:
12(x86)/16(x86_64)
m_cpIdMgr: Vec<u8>§C++ Info
- name:
cpIdMgr(ctype:hkArray<hkUint8>) - offset:
104(x86)/144(x86_64) - type_size:
12(x86)/16(x86_64)
m_nnEntryData: [u8; 160]§C++ Info
- name:
nnEntryData(ctype:hkUint8[160]) - offset:
116(x86)/160(x86_64) - type_size:
160(x86)/160(x86_64)
m_trackInfo: hkpSerializedTrack1nInfo§C++ Info
- name:
trackInfo(ctype:struct hkpSerializedTrack1nInfo) - offset:
276(x86)/320(x86_64) - type_size:
24(x86)/32(x86_64)
m_endianCheckBuffer: [u8; 4]§C++ Info
- name:
endianCheckBuffer(ctype:hkUint8[4]) - offset:
300(x86)/352(x86_64) - type_size:
4(x86)/4(x86_64)
m_version: u32§C++ Info
- name:
version(ctype:hkUint32) - offset:
304(x86)/356(x86_64) - type_size:
4(x86)/4(x86_64)
Trait Implementations§
Source§impl Clone for hkpSerializedAgentNnEntry
impl Clone for hkpSerializedAgentNnEntry
Source§impl Debug for hkpSerializedAgentNnEntry
impl Debug for hkpSerializedAgentNnEntry
Source§impl Default for hkpSerializedAgentNnEntry
impl Default for hkpSerializedAgentNnEntry
Source§impl<'de> Deserialize<'de> for hkpSerializedAgentNnEntry
impl<'de> Deserialize<'de> for hkpSerializedAgentNnEntry
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
Auto Trait Implementations§
impl Freeze for hkpSerializedAgentNnEntry
impl RefUnwindSafe for hkpSerializedAgentNnEntry
impl Send for hkpSerializedAgentNnEntry
impl Sync for hkpSerializedAgentNnEntry
impl Unpin for hkpSerializedAgentNnEntry
impl UnsafeUnpin for hkpSerializedAgentNnEntry
impl UnwindSafe for hkpSerializedAgentNnEntry
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