pub trait IAkBankManager_BankHandleMethods: IAkBankManager_BankHandle {
// Provided methods
fn ctor(self, name: impl Into<Il2CppString>) { ... }
fn get_ref_count(self) -> i32 { ... }
fn set_ref_count(self, value: impl Into<i32>) { ... }
fn do_load_bank(self) -> AKRESULT { ... }
fn load_bank(self) { ... }
fn unload_bank(self) { ... }
fn inc_ref(self) { ... }
fn dec_ref(self) { ... }
fn log_load_result(self, result: impl Into<AKRESULT>) { ... }
}Provided Methods§
Sourcefn ctor(self, name: impl Into<Il2CppString>)
fn ctor(self, name: impl Into<Il2CppString>)
.ctor(::unity::Il2CppString) overload
Sourcefn get_ref_count(self) -> i32
fn get_ref_count(self) -> i32
get_RefCount() overload
Sourcefn set_ref_count(self, value: impl Into<i32>)
fn set_ref_count(self, value: impl Into<i32>)
set_RefCount(i32) overload
Sourcefn do_load_bank(self) -> AKRESULT
fn do_load_bank(self) -> AKRESULT
DoLoadBank() overload
Sourcefn unload_bank(self)
fn unload_bank(self)
UnloadBank() overload
Sourcefn log_load_result(self, result: impl Into<AKRESULT>)
fn log_load_result(self, result: impl Into<AKRESULT>)
LogLoadResult(crate::root::akresult::AKRESULT) 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: IAkBankManager_BankHandle> IAkBankManager_BankHandleMethods for __T
Available on crate feature
root-akbankmanager only.