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§
Sourcefn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
.ctor(::unity::IntPtr, bool) overload
Sourcefn ctor_3(self, in_r_copy: impl Into<AkPlaylistItem>)
fn ctor_3(self, in_r_copy: impl Into<AkPlaylistItem>)
.ctor(crate::root::akplaylistitem::AkPlaylistItem) overload
Sourcefn assign(self, in_r_copy: impl Into<AkPlaylistItem>) -> AkPlaylistItem
fn assign(self, in_r_copy: impl Into<AkPlaylistItem>) -> AkPlaylistItem
Assign(crate::root::akplaylistitem::AkPlaylistItem) overload
Sourcefn is_equal_to(self, in_r_copy: impl Into<AkPlaylistItem>) -> bool
fn is_equal_to(self, in_r_copy: impl Into<AkPlaylistItem>) -> bool
IsEqualTo(crate::root::akplaylistitem::AkPlaylistItem) overload
Sourcefn set_external_sources(
self,
in_n_external_src: impl Into<u32>,
in_p_external_src: impl Into<AkExternalSourceInfoArray>,
) -> AKRESULT
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
Sourcefn set_audio_node_id(self, value: impl Into<u32>)
fn set_audio_node_id(self, value: impl Into<u32>)
set_audioNodeID(u32) overload
Sourcefn get_audio_node_id(self) -> u32
fn get_audio_node_id(self) -> u32
get_audioNodeID() overload
Sourcefn set_ms_delay(self, value: impl Into<i32>)
fn set_ms_delay(self, value: impl Into<i32>)
set_msDelay(i32) overload
Sourcefn get_ms_delay(self) -> i32
fn get_ms_delay(self) -> i32
get_msDelay() overload
Sourcefn set_p_custom_info(self, value: impl Into<IntPtr>)
fn set_p_custom_info(self, value: impl Into<IntPtr>)
set_pCustomInfo(::unity::IntPtr) overload
Sourcefn get_p_custom_info(self) -> IntPtr
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§
impl<__T: IAkPlaylistItem> IAkPlaylistItemMethods for __T
Available on crate feature
root-akplaylistitem only.