pub trait IAkObjectInfoArrayMethods: IAkObjectInfoArray {
// Provided methods
fn ctor(self, count: impl Into<i32>) { ... }
fn get_structure_size(self) -> i32 { ... }
fn default_construct_at_int_ptr(self, address: impl Into<IntPtr>) { ... }
fn create_new_reference_from_int_ptr(
self,
address: impl Into<IntPtr>,
) -> AkObjectInfo { ... }
fn clone_into_reference_from_int_ptr(
self,
address: impl Into<IntPtr>,
other: impl Into<AkObjectInfo>,
) { ... }
}Provided Methods§
Sourcefn get_structure_size(self) -> i32
fn get_structure_size(self) -> i32
get_StructureSize() overload
Sourcefn default_construct_at_int_ptr(self, address: impl Into<IntPtr>)
fn default_construct_at_int_ptr(self, address: impl Into<IntPtr>)
DefaultConstructAtIntPtr(::unity::IntPtr) overload
Sourcefn create_new_reference_from_int_ptr(
self,
address: impl Into<IntPtr>,
) -> AkObjectInfo
fn create_new_reference_from_int_ptr( self, address: impl Into<IntPtr>, ) -> AkObjectInfo
CreateNewReferenceFromIntPtr(::unity::IntPtr) overload
Sourcefn clone_into_reference_from_int_ptr(
self,
address: impl Into<IntPtr>,
other: impl Into<AkObjectInfo>,
)
fn clone_into_reference_from_int_ptr( self, address: impl Into<IntPtr>, other: impl Into<AkObjectInfo>, )
CloneIntoReferenceFromIntPtr(::unity::IntPtr, crate::root::akobjectinfo::AkObjectInfo) overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IAkObjectInfoArray> IAkObjectInfoArrayMethods for __T
Available on crate feature
root-akobjectinfoarray only.