Skip to main content

IAkDeviceDescriptionMethods

Trait IAkDeviceDescriptionMethods 

Source
pub trait IAkDeviceDescriptionMethods: IAkDeviceDescription {
Show 15 methods // 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_id_device(self, value: impl Into<u32>) { ... } fn get_id_device(self) -> u32 { ... } fn set_device_name(self, value: impl Into<Il2CppString>) { ... } fn get_device_name(self) -> Il2CppString { ... } fn set_device_state_mask(self, value: impl Into<AkAudioDeviceState>) { ... } fn get_device_state_mask(self) -> AkAudioDeviceState { ... } fn set_is_default_device(self, value: impl Into<bool>) { ... } fn get_is_default_device(self) -> bool { ... } fn clear(self) { ... } fn clone(self, other: impl Into<AkDeviceDescription>) { ... } fn ctor_2(self) { ... }
}

Provided Methods§

Source

fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)

.ctor(::unity::IntPtr, bool) overload

Source

fn set_c_ptr(self, c_ptr: impl Into<IntPtr>)

setCPtr(::unity::IntPtr) overload

Source

fn finalize(self)

Finalize() overload

Source

fn dispose(self)

Dispose() overload

Source

fn set_id_device(self, value: impl Into<u32>)

set_idDevice(u32) overload

Source

fn get_id_device(self) -> u32

get_idDevice() overload

Source

fn set_device_name(self, value: impl Into<Il2CppString>)

set_deviceName(::unity::Il2CppString) overload

Source

fn get_device_name(self) -> Il2CppString

get_deviceName() overload

Source

fn set_device_state_mask(self, value: impl Into<AkAudioDeviceState>)

set_deviceStateMask(crate::root::akaudiodevicestate::AkAudioDeviceState) overload

Source

fn get_device_state_mask(self) -> AkAudioDeviceState

get_deviceStateMask() overload

Source

fn set_is_default_device(self, value: impl Into<bool>)

set_isDefaultDevice(bool) overload

Source

fn get_is_default_device(self) -> bool

get_isDefaultDevice() overload

Source

fn clear(self)

Clear() overload

Source

fn clone(self, other: impl Into<AkDeviceDescription>)

Clone(crate::root::akdevicedescription::AkDeviceDescription) overload

Source

fn ctor_2(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: IAkDeviceDescription> IAkDeviceDescriptionMethods for __T

Available on crate feature root-akdevicedescription only.