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§
Sourcefn ctor(self, t: impl Into<TextWriter>)
fn ctor(self, t: impl Into<TextWriter>)
.ctor(crate::system::io::textwriter::TextWriter) overload
Sourcefn write_3(
self,
buffer: impl Into<Array<u16>>,
index: impl Into<i32>,
count: impl Into<i32>,
)
fn write_3( self, buffer: impl Into<Array<u16>>, index: impl Into<i32>, count: impl Into<i32>, )
Write(::unity::Array<u16>, i32, i32) overload
Sourcefn write_4(self, value: impl Into<Il2CppString>)
fn write_4(self, value: impl Into<Il2CppString>)
Write(::unity::Il2CppString) overload
Sourcefn write_line(self)
fn write_line(self)
WriteLine() overload
Sourcefn write_line_2(self, value: impl Into<u16>)
fn write_line_2(self, value: impl Into<u16>)
WriteLine(u16) overload
Sourcefn write_line_3(
self,
buffer: impl Into<Array<u16>>,
index: impl Into<i32>,
count: impl Into<i32>,
)
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
Sourcefn write_line_4(self, value: impl Into<Il2CppString>)
fn write_line_4(self, value: impl Into<Il2CppString>)
WriteLine(::unity::Il2CppString) overload
Sourcefn write_line_5(self, format: impl Into<Il2CppString>, arg0: impl Into<Object>)
fn write_line_5(self, format: impl Into<Il2CppString>, arg0: impl Into<Object>)
WriteLine(::unity::Il2CppString, crate::system::object::Object) overload
Sourcefn write_line_6(
self,
format: impl Into<Il2CppString>,
arg0: impl Into<Object>,
arg1: impl Into<Object>,
)
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§
impl<__T: ITextWriter_SyncTextWriter> ITextWriter_SyncTextWriterMethods for __T
Available on crate feature
system-io-textwriter only.