pub struct hkbProjectStringData<'a> {
pub __ptr: Option<Pointer>,
pub parent: hkReferencedObject,
pub m_animationFilenames: Vec<StringPtr<'a>>,
pub m_behaviorFilenames: Vec<StringPtr<'a>>,
pub m_characterFilenames: Vec<StringPtr<'a>>,
pub m_eventNames: Vec<StringPtr<'a>>,
pub m_animationPath: StringPtr<'a>,
pub m_behaviorPath: StringPtr<'a>,
pub m_characterPath: StringPtr<'a>,
pub m_fullPathToSource: StringPtr<'a>,
pub m_rootPath: StringPtr<'a>,
}Expand description
§C++ Info
- name:
hkbProjectStringData - version:
1 - signature:
0x76ad60a - size:
76(x86)/120(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_animationFilenames: Vec<StringPtr<'a>>§C++ Info
- name:
animationFilenames(ctype:hkArray<hkStringPtr>) - offset:
8(x86)/16(x86_64) - type_size:
12(x86)/16(x86_64)
m_behaviorFilenames: Vec<StringPtr<'a>>§C++ Info
- name:
behaviorFilenames(ctype:hkArray<hkStringPtr>) - offset:
20(x86)/32(x86_64) - type_size:
12(x86)/16(x86_64)
m_characterFilenames: Vec<StringPtr<'a>>§C++ Info
- name:
characterFilenames(ctype:hkArray<hkStringPtr>) - offset:
32(x86)/48(x86_64) - type_size:
12(x86)/16(x86_64)
m_eventNames: Vec<StringPtr<'a>>§C++ Info
- name:
eventNames(ctype:hkArray<hkStringPtr>) - offset:
44(x86)/64(x86_64) - type_size:
12(x86)/16(x86_64)
m_animationPath: StringPtr<'a>§C++ Info
- name:
animationPath(ctype:hkStringPtr) - offset:
56(x86)/80(x86_64) - type_size:
4(x86)/8(x86_64)
m_behaviorPath: StringPtr<'a>§C++ Info
- name:
behaviorPath(ctype:hkStringPtr) - offset:
60(x86)/88(x86_64) - type_size:
4(x86)/8(x86_64)
m_characterPath: StringPtr<'a>§C++ Info
- name:
characterPath(ctype:hkStringPtr) - offset:
64(x86)/96(x86_64) - type_size:
4(x86)/8(x86_64)
m_fullPathToSource: StringPtr<'a>§C++ Info
- name:
fullPathToSource(ctype:hkStringPtr) - offset:
68(x86)/104(x86_64) - type_size:
4(x86)/8(x86_64)
m_rootPath: StringPtr<'a>§C++ Info
- name:
rootPath(ctype:hkStringPtr) - offset:
72(x86)/112(x86_64) - type_size:
4(x86)/8(x86_64) - flags:
SERIALIZE_IGNORED
Trait Implementations§
Source§impl<'a> Clone for hkbProjectStringData<'a>
impl<'a> Clone for hkbProjectStringData<'a>
Source§impl<'a> Debug for hkbProjectStringData<'a>
impl<'a> Debug for hkbProjectStringData<'a>
Source§impl<'a> Default for hkbProjectStringData<'a>
impl<'a> Default for hkbProjectStringData<'a>
Source§impl<'de> Deserialize<'de> for hkbProjectStringData<'de>
impl<'de> Deserialize<'de> for hkbProjectStringData<'de>
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<'a> HavokClass for hkbProjectStringData<'a>
impl<'a> HavokClass for hkbProjectStringData<'a>
Source§impl<'a> PartialEq for hkbProjectStringData<'a>
impl<'a> PartialEq for hkbProjectStringData<'a>
Auto Trait Implementations§
impl<'a> Freeze for hkbProjectStringData<'a>
impl<'a> RefUnwindSafe for hkbProjectStringData<'a>
impl<'a> Send for hkbProjectStringData<'a>
impl<'a> Sync for hkbProjectStringData<'a>
impl<'a> Unpin for hkbProjectStringData<'a>
impl<'a> UnwindSafe for hkbProjectStringData<'a>
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