Skip to main content

IAkBankManager_BankHandleMethods

Trait IAkBankManager_BankHandleMethods 

Source
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§

Source

fn ctor(self, name: impl Into<Il2CppString>)

.ctor(::unity::Il2CppString) overload

Source

fn get_ref_count(self) -> i32

get_RefCount() overload

Source

fn set_ref_count(self, value: impl Into<i32>)

set_RefCount(i32) overload

Source

fn do_load_bank(self) -> AKRESULT

DoLoadBank() overload

Source

fn load_bank(self)

LoadBank() overload

Source

fn unload_bank(self)

UnloadBank() overload

Source

fn inc_ref(self)

IncRef() overload

Source

fn dec_ref(self)

DecRef() overload

Source

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§

Source§

impl<__T: IAkBankManager_BankHandle> IAkBankManager_BankHandleMethods for __T

Available on crate feature root-akbankmanager only.