pub trait IDebugTextWriterMethods: IDebugTextWriter {
// Provided methods
fn ctor(self) { ... }
fn ctor_2(self, name: impl Into<Il2CppString>) { ... }
fn dispose(self) { ... }
fn write(self, text: impl Into<Il2CppString>) { ... }
fn write_line(self, text: impl Into<Il2CppString>) { ... }
fn write_format(
self,
text: impl Into<Il2CppString>,
objects: impl Into<Array<Object>>,
) { ... }
fn save(self, name: impl Into<Il2CppString>) { ... }
}Provided Methods§
Sourcefn ctor_2(self, name: impl Into<Il2CppString>)
fn ctor_2(self, name: impl Into<Il2CppString>)
.ctor(::unity::Il2CppString) overload
Sourcefn write(self, text: impl Into<Il2CppString>)
fn write(self, text: impl Into<Il2CppString>)
Write(::unity::Il2CppString) overload
Sourcefn write_line(self, text: impl Into<Il2CppString>)
fn write_line(self, text: impl Into<Il2CppString>)
WriteLine(::unity::Il2CppString) overload
Sourcefn write_format(
self,
text: impl Into<Il2CppString>,
objects: impl Into<Array<Object>>,
)
fn write_format( self, text: impl Into<Il2CppString>, objects: impl Into<Array<Object>>, )
WriteFormat(::unity::Il2CppString, ::unity::Array<crate::system::object::Object>) overload
Sourcefn save(self, name: impl Into<Il2CppString>)
fn save(self, name: impl Into<Il2CppString>)
Save(::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: IDebugTextWriter> IDebugTextWriterMethods for __T
Available on crate feature
app-debugtextwriter only.