pub trait IAkMonitoringCallbackInfoMethods: IAkMonitoringCallbackInfo {
// 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_error_code(self) -> AkMonitorErrorCode { ... }
fn get_error_level(self) -> AkMonitorErrorLevel { ... }
fn get_playing_id(self) -> u32 { ... }
fn get_game_obj_id(self) -> u64 { ... }
fn get_message(self) -> Il2CppString { ... }
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
Sourcefn get_error_code(self) -> AkMonitorErrorCode
fn get_error_code(self) -> AkMonitorErrorCode
get_errorCode() overload
Sourcefn get_error_level(self) -> AkMonitorErrorLevel
fn get_error_level(self) -> AkMonitorErrorLevel
get_errorLevel() overload
Sourcefn get_playing_id(self) -> u32
fn get_playing_id(self) -> u32
get_playingID() overload
Sourcefn get_game_obj_id(self) -> u64
fn get_game_obj_id(self) -> u64
get_gameObjID() overload
Sourcefn get_message(self) -> Il2CppString
fn get_message(self) -> Il2CppString
get_message() 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: IAkMonitoringCallbackInfo> IAkMonitoringCallbackInfoMethods for __T
Available on crate feature
root-akmonitoringcallbackinfo only.