pub trait IAkRoom_PriorityListMethods: IAkRoom_PriorityList {
// Provided methods
fn get_highest_priority_active_and_enabled_room_id(self) -> u64 { ... }
fn get_highest_priority_active_and_enabled_room(self) -> AkRoom { ... }
fn get_count(self) -> i32 { ... }
fn clear(self) { ... }
fn add(self, room: impl Into<AkRoom>) { ... }
fn remove(self, room: impl Into<AkRoom>) { ... }
fn contains(self, room: impl Into<AkRoom>) -> bool { ... }
fn binary_search(self, room: impl Into<AkRoom>) -> i32 { ... }
fn get_item(self, index: impl Into<i32>) -> AkRoom { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_highest_priority_active_and_enabled_room_id(self) -> u64
fn get_highest_priority_active_and_enabled_room_id(self) -> u64
GetHighestPriorityActiveAndEnabledRoomID() overload
Sourcefn get_highest_priority_active_and_enabled_room(self) -> AkRoom
fn get_highest_priority_active_and_enabled_room(self) -> AkRoom
GetHighestPriorityActiveAndEnabledRoom() overload
Sourcefn contains(self, room: impl Into<AkRoom>) -> bool
fn contains(self, room: impl Into<AkRoom>) -> bool
Contains(crate::root::akroom::AkRoom) overload
Sourcefn binary_search(self, room: impl Into<AkRoom>) -> i32
fn binary_search(self, room: impl Into<AkRoom>) -> i32
BinarySearch(crate::root::akroom::AkRoom) 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: IAkRoom_PriorityList> IAkRoom_PriorityListMethods for __T
Available on crate feature
root-akroom only.