Skip to main content

IAkThreadPropertiesMethods

Trait IAkThreadPropertiesMethods 

Source
pub trait IAkThreadPropertiesMethods: IAkThreadProperties {
Show 13 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_n_priority(self, value: impl Into<i32>) { ... } fn get_n_priority(self) -> i32 { ... } fn set_u_stack_size(self, value: impl Into<u32>) { ... } fn get_u_stack_size(self) -> u32 { ... } fn set_i_ideal_core(self, value: impl Into<i32>) { ... } fn get_i_ideal_core(self) -> i32 { ... } fn set_affinity_mask(self, value: impl Into<u32>) { ... } fn get_affinity_mask(self) -> u32 { ... } 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_n_priority(self, value: impl Into<i32>)

set_nPriority(i32) overload

Source

fn get_n_priority(self) -> i32

get_nPriority() overload

Source

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

set_uStackSize(u32) overload

Source

fn get_u_stack_size(self) -> u32

get_uStackSize() overload

Source

fn set_i_ideal_core(self, value: impl Into<i32>)

set_iIdealCore(i32) overload

Source

fn get_i_ideal_core(self) -> i32

get_iIdealCore() overload

Source

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

set_affinityMask(u32) overload

Source

fn get_affinity_mask(self) -> u32

get_affinityMask() 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: IAkThreadProperties> IAkThreadPropertiesMethods for __T

Available on crate feature root-akthreadproperties only.