Skip to main content

IAkEnvironment

Trait IAkEnvironment 

Source
pub trait IAkEnvironment: IMonoBehaviour {
    // Provided methods
    fn exclude_others(self) -> bool { ... }
    fn set_exclude_others(self, value: bool) { ... }
    fn is_default(self) -> bool { ... }
    fn set_is_default(self, value: bool) { ... }
    fn priority(self) -> i32 { ... }
    fn set_priority(self, value: i32) { ... }
    fn aux_bus_id_internal(self) -> i32 { ... }
    fn set_aux_bus_id_internal(self, value: i32) { ... }
    fn value_guid_internal(self) -> Array<u8> { ... }
    fn set_value_guid_internal(self, value: Array<u8>) { ... }
}

Provided Methods§

Source

fn exclude_others(self) -> bool

Source

fn set_exclude_others(self, value: bool)

Source

fn is_default(self) -> bool

Source

fn set_is_default(self, value: bool)

Source

fn priority(self) -> i32

Source

fn set_priority(self, value: i32)

Source

fn aux_bus_id_internal(self) -> i32

Source

fn set_aux_bus_id_internal(self, value: i32)

Source

fn value_guid_internal(self) -> Array<u8>

Source

fn set_value_guid_internal(self, value: Array<u8>)

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§