pub trait IAkIteratorMethods: IAkIterator {
// 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 set_p_item(self, value: impl Into<AkPlaylistItem>) { ... }
fn get_p_item(self) -> AkPlaylistItem { ... }
fn next_iter(self) -> AkIterator { ... }
fn prev_iter(self) -> AkIterator { ... }
fn get_item(self) -> AkPlaylistItem { ... }
fn is_equal_to(self, in_r_op: impl Into<AkIterator>) -> bool { ... }
fn is_different_from(self, in_r_op: impl Into<AkIterator>) -> bool { ... }
fn ctor_2(self) { ... }
}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 set_p_item(self, value: impl Into<AkPlaylistItem>)
fn set_p_item(self, value: impl Into<AkPlaylistItem>)
set_pItem(crate::root::akplaylistitem::AkPlaylistItem) overload
Sourcefn get_p_item(self) -> AkPlaylistItem
fn get_p_item(self) -> AkPlaylistItem
get_pItem() overload
Sourcefn next_iter(self) -> AkIterator
fn next_iter(self) -> AkIterator
NextIter() overload
Sourcefn prev_iter(self) -> AkIterator
fn prev_iter(self) -> AkIterator
PrevIter() overload
Sourcefn get_item(self) -> AkPlaylistItem
fn get_item(self) -> AkPlaylistItem
GetItem() overload
Sourcefn is_equal_to(self, in_r_op: impl Into<AkIterator>) -> bool
fn is_equal_to(self, in_r_op: impl Into<AkIterator>) -> bool
IsEqualTo(crate::root::akiterator::AkIterator) overload
Sourcefn is_different_from(self, in_r_op: impl Into<AkIterator>) -> bool
fn is_different_from(self, in_r_op: impl Into<AkIterator>) -> bool
IsDifferentFrom(crate::root::akiterator::AkIterator) 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: IAkIterator> IAkIteratorMethods for __T
Available on crate feature
root-akiterator only.