pub trait IAkAudioListener_BaseListenerListMethods: IAkAudioListener_BaseListenerList {
// Provided methods
fn get_listener_list(self) -> List_1<AkAudioListener> { ... }
fn add(self, listener: impl Into<AkAudioListener>) -> bool { ... }
fn remove(self, listener: impl Into<AkAudioListener>) -> bool { ... }
fn get_listener_ids(self) -> Array<u64> { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_listener_list(self) -> List_1<AkAudioListener>
fn get_listener_list(self) -> List_1<AkAudioListener>
get_ListenerList() overload
Sourcefn add(self, listener: impl Into<AkAudioListener>) -> bool
fn add(self, listener: impl Into<AkAudioListener>) -> bool
Add(crate::root::akaudiolistener::AkAudioListener) overload
Sourcefn remove(self, listener: impl Into<AkAudioListener>) -> bool
fn remove(self, listener: impl Into<AkAudioListener>) -> bool
Remove(crate::root::akaudiolistener::AkAudioListener) overload
Sourcefn get_listener_ids(self) -> Array<u64>
fn get_listener_ids(self) -> Array<u64>
GetListenerIds() 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: IAkAudioListener_BaseListenerList> IAkAudioListener_BaseListenerListMethods for __T
Available on crate feature
root-akaudiolistener only.