Skip to main content

ITextWriter_SyncTextWriterMethods

Trait ITextWriter_SyncTextWriterMethods 

Source
pub trait ITextWriter_SyncTextWriterMethods: ITextWriter_SyncTextWriter {
Show 14 methods // Provided methods fn ctor(self, t: impl Into<TextWriter>) { ... } fn close(self) { ... } fn dispose(self, disposing: impl Into<bool>) { ... } fn flush(self) { ... } fn write(self, value: impl Into<u16>) { ... } fn write_2(self, buffer: impl Into<Array<u16>>) { ... } fn write_3( self, buffer: impl Into<Array<u16>>, index: impl Into<i32>, count: impl Into<i32>, ) { ... } fn write_4(self, value: impl Into<Il2CppString>) { ... } fn write_line(self) { ... } fn write_line_2(self, value: impl Into<u16>) { ... } fn write_line_3( self, buffer: impl Into<Array<u16>>, index: impl Into<i32>, count: impl Into<i32>, ) { ... } fn write_line_4(self, value: impl Into<Il2CppString>) { ... } fn write_line_5( self, format: impl Into<Il2CppString>, arg0: impl Into<Object>, ) { ... } fn write_line_6( self, format: impl Into<Il2CppString>, arg0: impl Into<Object>, arg1: impl Into<Object>, ) { ... }
}

Provided Methods§

Source

fn ctor(self, t: impl Into<TextWriter>)

.ctor(crate::system::io::textwriter::TextWriter) overload

Source

fn close(self)

Close() overload

Source

fn dispose(self, disposing: impl Into<bool>)

Dispose(bool) overload

Source

fn flush(self)

Flush() overload

Source

fn write(self, value: impl Into<u16>)

Write(u16) overload

Source

fn write_2(self, buffer: impl Into<Array<u16>>)

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

Source

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

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

Source

fn write_4(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<u16>)

WriteLine(u16) overload

Source

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

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

Source

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

WriteLine(::unity::Il2CppString) overload

Source

fn write_line_5(self, format: impl Into<Il2CppString>, arg0: impl Into<Object>)

WriteLine(::unity::Il2CppString, crate::system::object::Object) overload

Source

fn write_line_6( self, format: impl Into<Il2CppString>, arg0: impl Into<Object>, arg1: impl Into<Object>, )

WriteLine(::unity::Il2CppString, crate::system::object::Object, 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§

Source§

impl<__T: ITextWriter_SyncTextWriter> ITextWriter_SyncTextWriterMethods for __T

Available on crate feature system-io-textwriter only.