Skip to main content

IAkPlaylistItemMethods

Trait IAkPlaylistItemMethods 

Source
pub trait IAkPlaylistItemMethods: IAkPlaylistItem {
Show 15 methods // Provided methods fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>) { ... } fn set_c_ptr(self, c_ptr: impl Into<IntPtr>) { ... } fn finalize(self) { ... } fn dispose(self) { ... } fn ctor_2(self) { ... } fn ctor_3(self, in_r_copy: impl Into<AkPlaylistItem>) { ... } fn assign(self, in_r_copy: impl Into<AkPlaylistItem>) -> AkPlaylistItem { ... } fn is_equal_to(self, in_r_copy: impl Into<AkPlaylistItem>) -> bool { ... } fn set_external_sources( self, in_n_external_src: impl Into<u32>, in_p_external_src: impl Into<AkExternalSourceInfoArray>, ) -> AKRESULT { ... } fn set_audio_node_id(self, value: impl Into<u32>) { ... } fn get_audio_node_id(self) -> u32 { ... } fn set_ms_delay(self, value: impl Into<i32>) { ... } fn get_ms_delay(self) -> i32 { ... } fn set_p_custom_info(self, value: impl Into<IntPtr>) { ... } fn get_p_custom_info(self) -> IntPtr { ... }
}

Provided Methods§

Source

fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)

.ctor(::unity::IntPtr, bool) overload

Source

fn set_c_ptr(self, c_ptr: impl Into<IntPtr>)

setCPtr(::unity::IntPtr) overload

Source

fn finalize(self)

Finalize() overload

Source

fn dispose(self)

Dispose() overload

Source

fn ctor_2(self)

.ctor() overload

Source

fn ctor_3(self, in_r_copy: impl Into<AkPlaylistItem>)

.ctor(crate::root::akplaylistitem::AkPlaylistItem) overload

Source

fn assign(self, in_r_copy: impl Into<AkPlaylistItem>) -> AkPlaylistItem

Assign(crate::root::akplaylistitem::AkPlaylistItem) overload

Source

fn is_equal_to(self, in_r_copy: impl Into<AkPlaylistItem>) -> bool

IsEqualTo(crate::root::akplaylistitem::AkPlaylistItem) overload

Source

fn set_external_sources( self, in_n_external_src: impl Into<u32>, in_p_external_src: impl Into<AkExternalSourceInfoArray>, ) -> AKRESULT

SetExternalSources(u32, crate::root::akexternalsourceinfoarray::AkExternalSourceInfoArray) overload

Source

fn set_audio_node_id(self, value: impl Into<u32>)

set_audioNodeID(u32) overload

Source

fn get_audio_node_id(self) -> u32

get_audioNodeID() overload

Source

fn set_ms_delay(self, value: impl Into<i32>)

set_msDelay(i32) overload

Source

fn get_ms_delay(self) -> i32

get_msDelay() overload

Source

fn set_p_custom_info(self, value: impl Into<IntPtr>)

set_pCustomInfo(::unity::IntPtr) overload

Source

fn get_p_custom_info(self) -> IntPtr

get_pCustomInfo() 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: IAkPlaylistItem> IAkPlaylistItemMethods for __T

Available on crate feature root-akplaylistitem only.