pub trait IAkCallbackInfoMethods: IAkCallbackInfo {
// 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 get_p_cookie(self) -> IntPtr { ... }
fn get_game_obj_id(self) -> u64 { ... }
fn ctor_2(self) { ... }
}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
get_pCookie() overload
Sourcefn get_game_obj_id(self) -> u64
fn get_game_obj_id(self) -> u64
get_gameObjID() 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: IAkCallbackInfo> IAkCallbackInfoMethods for __T
Available on crate feature
root-akcallbackinfo only.