Skip to main content

ITextWriter_NullTextWriterMethods

Trait ITextWriter_NullTextWriterMethods 

Source
pub trait ITextWriter_NullTextWriterMethods: ITextWriter_NullTextWriter {
    // Provided methods
    fn ctor(self) { ... }
    fn write(
        self,
        buffer: impl Into<Array<u16>>,
        index: impl Into<i32>,
        count: impl Into<i32>,
    ) { ... }
    fn write_2(self, value: impl Into<Il2CppString>) { ... }
    fn write_line(self) { ... }
    fn write_line_2(self, value: impl Into<Il2CppString>) { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn write( self, buffer: impl Into<Array<u16>>, index: impl Into<i32>, count: impl Into<i32>, )

Write(::unity::Array<u16>, i32, i32) overload

Source

fn write_2(self, value: impl Into<Il2CppString>)

Write(::unity::Il2CppString) overload

Source

fn write_line(self)

WriteLine() overload

Source

fn write_line_2(self, value: impl Into<Il2CppString>)

WriteLine(::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: ITextWriter_NullTextWriter> ITextWriter_NullTextWriterMethods for __T

Available on crate feature system-io-textwriter only.