pub trait IUnexceptionalStreamWriterMethods: IUnexceptionalStreamWriter {
// Provided methods
fn flush(self) { ... }
fn write(
self,
buffer: impl Into<Array<u16>>,
index: impl Into<i32>,
count: impl Into<i32>,
) { ... }
fn write_2(self, value: impl Into<u16>) { ... }
fn write_3(self, value: impl Into<Array<u16>>) { ... }
fn write_4(self, value: impl Into<Il2CppString>) { ... }
}Provided Methods§
Sourcefn write(
self,
buffer: impl Into<Array<u16>>,
index: impl Into<i32>,
count: impl Into<i32>,
)
fn write( 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
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: IUnexceptionalStreamWriter> IUnexceptionalStreamWriterMethods for __T
Available on crate feature
system-io-unexceptionalstreamwriter only.