Skip to main content

IAkCommunicationSettingsMethods

Trait IAkCommunicationSettingsMethods 

Source
pub trait IAkCommunicationSettingsMethods: IAkCommunicationSettings {
Show 21 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 set_comms_thread_properties(self, value: impl Into<AkThreadProperties>) { ... } fn get_comms_thread_properties(self) -> AkThreadProperties { ... } fn set_u_pool_size(self, value: impl Into<u32>) { ... } fn get_u_pool_size(self) -> u32 { ... } fn set_u_discovery_broadcast_port(self, value: impl Into<u16>) { ... } fn get_u_discovery_broadcast_port(self) -> u16 { ... } fn set_u_command_port(self, value: impl Into<u16>) { ... } fn get_u_command_port(self) -> u16 { ... } fn set_u_notification_port(self, value: impl Into<u16>) { ... } fn get_u_notification_port(self) -> u16 { ... } fn set_comm_system( self, value: impl Into<AkCommunicationSettings_AkCommSystem>, ) { ... } fn get_comm_system(self) -> AkCommunicationSettings_AkCommSystem { ... } fn set_b_init_system_lib(self, value: impl Into<bool>) { ... } fn get_b_init_system_lib(self) -> bool { ... } fn set_sz_app_network_name(self, value: impl Into<Il2CppString>) { ... } fn get_sz_app_network_name(self) -> Il2CppString { ... }
}

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

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

Source

fn get_comms_thread_properties(self) -> AkThreadProperties

get_commsThreadProperties() overload

Source

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

set_uPoolSize(u32) overload

Source

fn get_u_pool_size(self) -> u32

get_uPoolSize() overload

Source

fn set_u_discovery_broadcast_port(self, value: impl Into<u16>)

set_uDiscoveryBroadcastPort(u16) overload

Source

fn get_u_discovery_broadcast_port(self) -> u16

get_uDiscoveryBroadcastPort() overload

Source

fn set_u_command_port(self, value: impl Into<u16>)

set_uCommandPort(u16) overload

Source

fn get_u_command_port(self) -> u16

get_uCommandPort() overload

Source

fn set_u_notification_port(self, value: impl Into<u16>)

set_uNotificationPort(u16) overload

Source

fn get_u_notification_port(self) -> u16

get_uNotificationPort() overload

Source

fn set_comm_system(self, value: impl Into<AkCommunicationSettings_AkCommSystem>)

set_commSystem(crate::root::akcommunicationsettings::AkCommunicationSettings_AkCommSystem) overload

Source

fn get_comm_system(self) -> AkCommunicationSettings_AkCommSystem

get_commSystem() overload

Source

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

set_bInitSystemLib(bool) overload

Source

fn get_b_init_system_lib(self) -> bool

get_bInitSystemLib() overload

Source

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

set_szAppNetworkName(::unity::Il2CppString) overload

Source

fn get_sz_app_network_name(self) -> Il2CppString

get_szAppNetworkName() 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: IAkCommunicationSettings> IAkCommunicationSettingsMethods for __T

Available on crate feature root-akcommunicationsettings only.