pub trait IDebugLogHandlerMethods: IDebugLogHandler {
// Provided methods
fn log_format(
self,
log_type: impl Into<LogType>,
context: impl Into<Object_2>,
format: impl Into<Il2CppString>,
args: impl Into<Array<Object>>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn log_format(
self,
log_type: impl Into<LogType>,
context: impl Into<Object_2>,
format: impl Into<Il2CppString>,
args: impl Into<Array<Object>>,
)
fn log_format( self, log_type: impl Into<LogType>, context: impl Into<Object_2>, format: impl Into<Il2CppString>, args: impl Into<Array<Object>>, )
LogFormat(crate::unity_engine::logtype::LogType, crate::unity_engine::object_2::Object_2, ::unity::Il2CppString, ::unity::Array<crate::system::object::Object>) 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: IDebugLogHandler> IDebugLogHandlerMethods for __T
Available on crate feature
unity_engine-debugloghandler only.