pub trait IAkVertexArrayMethods: IAkVertexArray {
// Provided methods
fn ctor(self, count: impl Into<i32>) { ... }
fn get_structure_size(self) -> i32 { ... }
fn create_new_reference_from_int_ptr(
self,
address: impl Into<IntPtr>,
) -> AkVertex { ... }
fn clone_into_reference_from_int_ptr(
self,
address: impl Into<IntPtr>,
other: impl Into<AkVertex>,
) { ... }
}Provided Methods§
Sourcefn get_structure_size(self) -> i32
fn get_structure_size(self) -> i32
get_StructureSize() overload
Sourcefn create_new_reference_from_int_ptr(
self,
address: impl Into<IntPtr>,
) -> AkVertex
fn create_new_reference_from_int_ptr( self, address: impl Into<IntPtr>, ) -> AkVertex
CreateNewReferenceFromIntPtr(::unity::IntPtr) overload
Sourcefn clone_into_reference_from_int_ptr(
self,
address: impl Into<IntPtr>,
other: impl Into<AkVertex>,
)
fn clone_into_reference_from_int_ptr( self, address: impl Into<IntPtr>, other: impl Into<AkVertex>, )
CloneIntoReferenceFromIntPtr(::unity::IntPtr, crate::root::akvertex::AkVertex) 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: IAkVertexArray> IAkVertexArrayMethods for __T
Available on crate feature
root-akvertexarray only.