pub trait IAkMemBankLoaderMethods: IAkMemBankLoader {
// Provided methods
fn start(self) { ... }
fn load_non_localized_bank(self, in_bank_filename: impl Into<Il2CppString>) { ... }
fn load_localized_bank(self, in_bank_filename: impl Into<Il2CppString>) { ... }
fn allocate_aligned_buffer(self, data: impl Into<Array<u8>>) -> u32 { ... }
fn load_file(self) -> IEnumerator { ... }
fn do_load_bank(self, in_bank_path: impl Into<Il2CppString>) { ... }
fn on_destroy(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn load_non_localized_bank(self, in_bank_filename: impl Into<Il2CppString>)
fn load_non_localized_bank(self, in_bank_filename: impl Into<Il2CppString>)
LoadNonLocalizedBank(::unity::Il2CppString) overload
Sourcefn load_localized_bank(self, in_bank_filename: impl Into<Il2CppString>)
fn load_localized_bank(self, in_bank_filename: impl Into<Il2CppString>)
LoadLocalizedBank(::unity::Il2CppString) overload
Sourcefn allocate_aligned_buffer(self, data: impl Into<Array<u8>>) -> u32
fn allocate_aligned_buffer(self, data: impl Into<Array<u8>>) -> u32
AllocateAlignedBuffer(::unity::Array<u8>) overload
Sourcefn load_file(self) -> IEnumerator
fn load_file(self) -> IEnumerator
LoadFile() overload
Sourcefn do_load_bank(self, in_bank_path: impl Into<Il2CppString>)
fn do_load_bank(self, in_bank_path: impl Into<Il2CppString>)
DoLoadBank(::unity::Il2CppString) overload
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() 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: IAkMemBankLoader> IAkMemBankLoaderMethods for __T
Available on crate feature
root-akmembankloader only.