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§
Sourcefn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
.ctor(::unity::IntPtr, bool) overload
Sourcefn 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_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
Sourcefn 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_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
Sourcefn ctor_5(
self,
in_id_file: impl Into<u32>,
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>, )
.ctor(u32, u32, u32) overload
Sourcefn clone(self, other: impl Into<AkExternalSourceInfo>)
fn clone(self, other: impl Into<AkExternalSourceInfo>)
Clone(crate::root::akexternalsourceinfo::AkExternalSourceInfo) overload
set_iExternalSrcCookie(u32) overload
get_iExternalSrcCookie() overload
Sourcefn set_id_codec(self, value: impl Into<u32>)
fn set_id_codec(self, value: impl Into<u32>)
set_idCodec(u32) overload
Sourcefn get_id_codec(self) -> u32
fn get_id_codec(self) -> u32
get_idCodec() overload
Sourcefn set_sz_file(self, value: impl Into<Il2CppString>)
fn set_sz_file(self, value: impl Into<Il2CppString>)
set_szFile(::unity::Il2CppString) overload
Sourcefn get_sz_file(self) -> Il2CppString
fn get_sz_file(self) -> Il2CppString
get_szFile() overload
Sourcefn set_p_in_memory(self, value: impl Into<IntPtr>)
fn set_p_in_memory(self, value: impl Into<IntPtr>)
set_pInMemory(::unity::IntPtr) overload
Sourcefn get_p_in_memory(self) -> IntPtr
fn get_p_in_memory(self) -> IntPtr
get_pInMemory() overload
Sourcefn set_ui_memory_size(self, value: impl Into<u32>)
fn set_ui_memory_size(self, value: impl Into<u32>)
set_uiMemorySize(u32) overload
Sourcefn get_ui_memory_size(self) -> u32
fn get_ui_memory_size(self) -> u32
get_uiMemorySize() overload
Sourcefn set_id_file(self, value: impl Into<u32>)
fn set_id_file(self, value: impl Into<u32>)
set_idFile(u32) overload
Sourcefn get_id_file(self) -> u32
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§
impl<__T: IAkExternalSourceInfo> IAkExternalSourceInfoMethods for __T
Available on crate feature
root-akexternalsourceinfo only.