Skip to main content

IAkRoom_PriorityListMethods

Trait IAkRoom_PriorityListMethods 

Source
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§

Source

fn get_highest_priority_active_and_enabled_room_id(self) -> u64

GetHighestPriorityActiveAndEnabledRoomID() overload

Source

fn get_highest_priority_active_and_enabled_room(self) -> AkRoom

GetHighestPriorityActiveAndEnabledRoom() overload

Source

fn get_count(self) -> i32

get_Count() overload

Source

fn clear(self)

Clear() overload

Source

fn add(self, room: impl Into<AkRoom>)

Add(crate::root::akroom::AkRoom) overload

Source

fn remove(self, room: impl Into<AkRoom>)

Remove(crate::root::akroom::AkRoom) overload

Source

fn contains(self, room: impl Into<AkRoom>) -> bool

Contains(crate::root::akroom::AkRoom) overload

BinarySearch(crate::root::akroom::AkRoom) overload

Source

fn get_item(self, index: impl Into<i32>) -> AkRoom

get_Item(i32) overload

Source

fn ctor(self)

.ctor() 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: IAkRoom_PriorityList> IAkRoom_PriorityListMethods for __T

Available on crate feature root-akroom only.