Skip to main content

IAkDeviceSettingsMethods

Trait IAkDeviceSettingsMethods 

Source
pub trait IAkDeviceSettingsMethods: IAkDeviceSettings {
Show 26 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_p_io_memory(self, value: impl Into<IntPtr>) { ... } fn get_p_io_memory(self) -> IntPtr { ... } fn set_u_io_memory_size(self, value: impl Into<u32>) { ... } fn get_u_io_memory_size(self) -> u32 { ... } fn set_u_io_memory_alignment(self, value: impl Into<u32>) { ... } fn get_u_io_memory_alignment(self) -> u32 { ... } fn set_e_pool_attributes(self, value: impl Into<u32>) { ... } fn get_e_pool_attributes(self) -> u32 { ... } fn set_u_granularity(self, value: impl Into<u32>) { ... } fn get_u_granularity(self) -> u32 { ... } fn set_u_scheduler_type_flags(self, value: impl Into<u32>) { ... } fn get_u_scheduler_type_flags(self) -> u32 { ... } fn set_thread_properties(self, value: impl Into<AkThreadProperties>) { ... } fn get_thread_properties(self) -> AkThreadProperties { ... } fn set_f_target_auto_stm_buffer_length(self, value: impl Into<f32>) { ... } fn get_f_target_auto_stm_buffer_length(self) -> f32 { ... } fn set_u_max_concurrent_io(self, value: impl Into<u32>) { ... } fn get_u_max_concurrent_io(self) -> u32 { ... } fn set_b_use_stream_cache(self, value: impl Into<bool>) { ... } fn get_b_use_stream_cache(self) -> bool { ... } fn set_u_max_cache_pinned_bytes(self, value: impl Into<u32>) { ... } fn get_u_max_cache_pinned_bytes(self) -> u32 { ... }
}

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_p_io_memory(self, value: impl Into<IntPtr>)

set_pIOMemory(::unity::IntPtr) overload

Source

fn get_p_io_memory(self) -> IntPtr

get_pIOMemory() overload

Source

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

set_uIOMemorySize(u32) overload

Source

fn get_u_io_memory_size(self) -> u32

get_uIOMemorySize() overload

Source

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

set_uIOMemoryAlignment(u32) overload

Source

fn get_u_io_memory_alignment(self) -> u32

get_uIOMemoryAlignment() overload

Source

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

set_ePoolAttributes(u32) overload

Source

fn get_e_pool_attributes(self) -> u32

get_ePoolAttributes() overload

Source

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

set_uGranularity(u32) overload

Source

fn get_u_granularity(self) -> u32

get_uGranularity() overload

Source

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

set_uSchedulerTypeFlags(u32) overload

Source

fn get_u_scheduler_type_flags(self) -> u32

get_uSchedulerTypeFlags() overload

Source

fn set_thread_properties(self, value: impl Into<AkThreadProperties>)

set_threadProperties(crate::root::akthreadproperties::AkThreadProperties) overload

Source

fn get_thread_properties(self) -> AkThreadProperties

get_threadProperties() overload

Source

fn set_f_target_auto_stm_buffer_length(self, value: impl Into<f32>)

set_fTargetAutoStmBufferLength(f32) overload

Source

fn get_f_target_auto_stm_buffer_length(self) -> f32

get_fTargetAutoStmBufferLength() overload

Source

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

set_uMaxConcurrentIO(u32) overload

Source

fn get_u_max_concurrent_io(self) -> u32

get_uMaxConcurrentIO() overload

Source

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

set_bUseStreamCache(bool) overload

Source

fn get_b_use_stream_cache(self) -> bool

get_bUseStreamCache() overload

Source

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

set_uMaxCachePinnedBytes(u32) overload

Source

fn get_u_max_cache_pinned_bytes(self) -> u32

get_uMaxCachePinnedBytes() 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: IAkDeviceSettings> IAkDeviceSettingsMethods for __T

Available on crate feature root-akdevicesettings only.