Skip to main content

IAkExternalSourceInfoMethods

Trait IAkExternalSourceInfoMethods 

Source
pub trait IAkExternalSourceInfoMethods: IAkExternalSourceInfo {
Show 22 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_p_in_memory: impl Into<IntPtr>, in_ui_memory_size: impl Into<u32>, in_i_external_src_cookie: impl Into<u32>, in_id_codec: impl Into<u32>, ) { ... } fn ctor_4( self, in_psz_file_name: impl Into<Il2CppString>, in_i_external_src_cookie: impl Into<u32>, in_id_codec: impl Into<u32>, ) { ... } fn ctor_5( self, in_id_file: impl Into<u32>, in_i_external_src_cookie: impl Into<u32>, in_id_codec: impl Into<u32>, ) { ... } fn clear(self) { ... } fn clone(self, other: impl Into<AkExternalSourceInfo>) { ... } fn set_i_external_src_cookie(self, value: impl Into<u32>) { ... } fn get_i_external_src_cookie(self) -> u32 { ... } fn set_id_codec(self, value: impl Into<u32>) { ... } fn get_id_codec(self) -> u32 { ... } fn set_sz_file(self, value: impl Into<Il2CppString>) { ... } fn get_sz_file(self) -> Il2CppString { ... } fn set_p_in_memory(self, value: impl Into<IntPtr>) { ... } fn get_p_in_memory(self) -> IntPtr { ... } fn set_ui_memory_size(self, value: impl Into<u32>) { ... } fn get_ui_memory_size(self) -> u32 { ... } fn set_id_file(self, value: impl Into<u32>) { ... } fn get_id_file(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 ctor_2(self)

.ctor() overload

Source

fn ctor_3( self, in_p_in_memory: impl Into<IntPtr>, in_ui_memory_size: impl Into<u32>, in_i_external_src_cookie: impl Into<u32>, in_id_codec: impl Into<u32>, )

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

Source

fn ctor_4( self, in_psz_file_name: impl Into<Il2CppString>, in_i_external_src_cookie: impl Into<u32>, in_id_codec: impl Into<u32>, )

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

Source

fn ctor_5( self, in_id_file: impl Into<u32>, in_i_external_src_cookie: impl Into<u32>, in_id_codec: impl Into<u32>, )

.ctor(u32, u32, u32) overload

Source

fn clear(self)

Clear() overload

Source

fn clone(self, other: impl Into<AkExternalSourceInfo>)

Clone(crate::root::akexternalsourceinfo::AkExternalSourceInfo) overload

set_iExternalSrcCookie(u32) overload

get_iExternalSrcCookie() overload

Source

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

set_idCodec(u32) overload

Source

fn get_id_codec(self) -> u32

get_idCodec() overload

Source

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

set_szFile(::unity::Il2CppString) overload

Source

fn get_sz_file(self) -> Il2CppString

get_szFile() overload

Source

fn set_p_in_memory(self, value: impl Into<IntPtr>)

set_pInMemory(::unity::IntPtr) overload

Source

fn get_p_in_memory(self) -> IntPtr

get_pInMemory() overload

Source

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

set_uiMemorySize(u32) overload

Source

fn get_ui_memory_size(self) -> u32

get_uiMemorySize() overload

Source

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

set_idFile(u32) overload

Source

fn get_id_file(self) -> u32

get_idFile() 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: IAkExternalSourceInfo> IAkExternalSourceInfoMethods for __T

Available on crate feature root-akexternalsourceinfo only.