Skip to main content

IAkOutputSettingsMethods

Trait IAkOutputSettingsMethods 

Source
pub trait IAkOutputSettingsMethods: IAkOutputSettings {
Show 17 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 ctor_2(self) { ... } fn ctor_3( self, in_sz_device_share_set: impl Into<Il2CppString>, in_id_device: impl Into<u32>, in_channel_config: impl Into<AkChannelConfig>, in_e_panning: impl Into<AkPanningRule>, ) { ... } fn ctor_4( self, in_sz_device_share_set: impl Into<Il2CppString>, in_id_device: impl Into<u32>, in_channel_config: impl Into<AkChannelConfig>, ) { ... } fn ctor_5( self, in_sz_device_share_set: impl Into<Il2CppString>, in_id_device: impl Into<u32>, ) { ... } fn ctor_6(self, in_sz_device_share_set: impl Into<Il2CppString>) { ... } fn set_audio_device_shareset(self, value: impl Into<u32>) { ... } fn get_audio_device_shareset(self) -> u32 { ... } fn set_id_device(self, value: impl Into<u32>) { ... } fn get_id_device(self) -> u32 { ... } fn set_e_panning_rule(self, value: impl Into<AkPanningRule>) { ... } fn get_e_panning_rule(self) -> AkPanningRule { ... } fn set_channel_config(self, value: impl Into<AkChannelConfig>) { ... } fn get_channel_config(self) -> AkChannelConfig { ... }
}

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 ctor_2(self)

.ctor() overload

Source

fn ctor_3( self, in_sz_device_share_set: impl Into<Il2CppString>, in_id_device: impl Into<u32>, in_channel_config: impl Into<AkChannelConfig>, in_e_panning: impl Into<AkPanningRule>, )

.ctor(::unity::Il2CppString, u32, crate::root::akchannelconfig::AkChannelConfig, crate::root::akpanningrule::AkPanningRule) overload

Source

fn ctor_4( self, in_sz_device_share_set: impl Into<Il2CppString>, in_id_device: impl Into<u32>, in_channel_config: impl Into<AkChannelConfig>, )

.ctor(::unity::Il2CppString, u32, crate::root::akchannelconfig::AkChannelConfig) overload

Source

fn ctor_5( self, in_sz_device_share_set: impl Into<Il2CppString>, in_id_device: impl Into<u32>, )

.ctor(::unity::Il2CppString, u32) overload

Source

fn ctor_6(self, in_sz_device_share_set: impl Into<Il2CppString>)

.ctor(::unity::Il2CppString) overload

Source

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

set_audioDeviceShareset(u32) overload

Source

fn get_audio_device_shareset(self) -> u32

get_audioDeviceShareset() 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_e_panning_rule(self, value: impl Into<AkPanningRule>)

set_ePanningRule(crate::root::akpanningrule::AkPanningRule) overload

Source

fn get_e_panning_rule(self) -> AkPanningRule

get_ePanningRule() overload

Source

fn set_channel_config(self, value: impl Into<AkChannelConfig>)

set_channelConfig(crate::root::akchannelconfig::AkChannelConfig) overload

Source

fn get_channel_config(self) -> AkChannelConfig

get_channelConfig() 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: IAkOutputSettings> IAkOutputSettingsMethods for __T

Available on crate feature root-akoutputsettings only.