pub trait IUnityLogWriterMethods: IUnityLogWriter {
// Provided methods
fn write(self, value: impl Into<u16>) { ... }
fn write_2(self, s: impl Into<Il2CppString>) { ... }
fn write_3(
self,
buffer: impl Into<Array<u16>>,
index: impl Into<i32>,
count: impl Into<i32>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn write_2(self, s: impl Into<Il2CppString>)
fn write_2(self, s: impl Into<Il2CppString>)
Write(::unity::Il2CppString) 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: IUnityLogWriter> IUnityLogWriterMethods for __T
Available on crate feature
unity_engine-unitylogwriter only.