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§
Sourcefn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
.ctor(::unity::IntPtr, bool) overload
Sourcefn set_id_device(self, value: impl Into<u32>)
fn set_id_device(self, value: impl Into<u32>)
set_idDevice(u32) overload
Sourcefn get_id_device(self) -> u32
fn get_id_device(self) -> u32
get_idDevice() overload
Sourcefn set_device_name(self, value: impl Into<Il2CppString>)
fn set_device_name(self, value: impl Into<Il2CppString>)
set_deviceName(::unity::Il2CppString) overload
Sourcefn get_device_name(self) -> Il2CppString
fn get_device_name(self) -> Il2CppString
get_deviceName() overload
Sourcefn set_device_state_mask(self, value: impl Into<AkAudioDeviceState>)
fn set_device_state_mask(self, value: impl Into<AkAudioDeviceState>)
set_deviceStateMask(crate::root::akaudiodevicestate::AkAudioDeviceState) overload
Sourcefn get_device_state_mask(self) -> AkAudioDeviceState
fn get_device_state_mask(self) -> AkAudioDeviceState
get_deviceStateMask() overload
Sourcefn set_is_default_device(self, value: impl Into<bool>)
fn set_is_default_device(self, value: impl Into<bool>)
set_isDefaultDevice(bool) overload
Sourcefn get_is_default_device(self) -> bool
fn get_is_default_device(self) -> bool
get_isDefaultDevice() overload
Sourcefn clone(self, other: impl Into<AkDeviceDescription>)
fn clone(self, other: impl Into<AkDeviceDescription>)
Clone(crate::root::akdevicedescription::AkDeviceDescription) 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: IAkDeviceDescription> IAkDeviceDescriptionMethods for __T
Available on crate feature
root-akdevicedescription only.