Skip to main content

IAkTriangleArrayMethods

Trait IAkTriangleArrayMethods 

Source
pub trait IAkTriangleArrayMethods: IAkTriangleArray {
    // 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>,
    ) -> AkTriangle { ... }
    fn clone_into_reference_from_int_ptr(
        self,
        address: impl Into<IntPtr>,
        other: impl Into<AkTriangle>,
    ) { ... }
}

Provided Methods§

Source

fn ctor(self, count: impl Into<i32>)

.ctor(i32) overload

Source

fn get_structure_size(self) -> i32

get_StructureSize() overload

Source

fn default_construct_at_int_ptr(self, address: impl Into<IntPtr>)

DefaultConstructAtIntPtr(::unity::IntPtr) overload

Source

fn create_new_reference_from_int_ptr( self, address: impl Into<IntPtr>, ) -> AkTriangle

CreateNewReferenceFromIntPtr(::unity::IntPtr) overload

Source

fn clone_into_reference_from_int_ptr( self, address: impl Into<IntPtr>, other: impl Into<AkTriangle>, )

CloneIntoReferenceFromIntPtr(::unity::IntPtr, crate::root::aktriangle::AkTriangle) 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§

Source§

impl<__T: IAkTriangleArray> IAkTriangleArrayMethods for __T

Available on crate feature root-aktrianglearray only.