Skip to main content

IDebugTextWriterMethods

Trait IDebugTextWriterMethods 

Source
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§

Source

fn ctor(self)

.ctor() overload

Source

fn ctor_2(self, name: impl Into<Il2CppString>)

.ctor(::unity::Il2CppString) overload

Source

fn dispose(self)

Dispose() overload

Source

fn write(self, text: impl Into<Il2CppString>)

Write(::unity::Il2CppString) overload

Source

fn write_line(self, text: impl Into<Il2CppString>)

WriteLine(::unity::Il2CppString) overload

Source

fn write_format( self, text: impl Into<Il2CppString>, objects: impl Into<Array<Object>>, )

WriteFormat(::unity::Il2CppString, ::unity::Array<crate::system::object::Object>) overload

Source

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§

Source§

impl<__T: IDebugTextWriter> IDebugTextWriterMethods for __T

Available on crate feature app-debugtextwriter only.