pub trait IAkMIDIPostArrayMethods: IAkMIDIPostArray {
// Provided methods
fn ctor(self, size: impl Into<i32>) { ... }
fn get_item(self, index: impl Into<i32>) -> AkMIDIPost { ... }
fn set_item(self, index: impl Into<i32>, value: impl Into<AkMIDIPost>) { ... }
fn finalize(self) { ... }
fn post_on_event(
self,
in_event_id: impl Into<u32>,
game_object: impl Into<GameObject>,
) { ... }
fn post_on_event_2(
self,
in_event_id: impl Into<u32>,
game_object: impl Into<GameObject>,
count: impl Into<i32>,
) { ... }
fn get_buffer(self) -> IntPtr { ... }
fn count(self) -> i32 { ... }
fn get_object_ptr(self, index: impl Into<i32>) -> IntPtr { ... }
}Provided Methods§
Sourcefn get_item(self, index: impl Into<i32>) -> AkMIDIPost
fn get_item(self, index: impl Into<i32>) -> AkMIDIPost
get_Item(i32) overload
Sourcefn set_item(self, index: impl Into<i32>, value: impl Into<AkMIDIPost>)
fn set_item(self, index: impl Into<i32>, value: impl Into<AkMIDIPost>)
set_Item(i32, crate::root::akmidipost::AkMIDIPost) overload
Sourcefn post_on_event(
self,
in_event_id: impl Into<u32>,
game_object: impl Into<GameObject>,
)
fn post_on_event( self, in_event_id: impl Into<u32>, game_object: impl Into<GameObject>, )
PostOnEvent(u32, crate::unity_engine::gameobject::GameObject) overload
Sourcefn post_on_event_2(
self,
in_event_id: impl Into<u32>,
game_object: impl Into<GameObject>,
count: impl Into<i32>,
)
fn post_on_event_2( self, in_event_id: impl Into<u32>, game_object: impl Into<GameObject>, count: impl Into<i32>, )
PostOnEvent(u32, crate::unity_engine::gameobject::GameObject, i32) overload
Sourcefn get_buffer(self) -> IntPtr
fn get_buffer(self) -> IntPtr
GetBuffer() overload
Sourcefn get_object_ptr(self, index: impl Into<i32>) -> IntPtr
fn get_object_ptr(self, index: impl Into<i32>) -> IntPtr
GetObjectPtr(i32) 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: IAkMIDIPostArray> IAkMIDIPostArrayMethods for __T
Available on crate feature
root-akmidipostarray only.