Skip to main content

IUnexceptionalStreamWriterMethods

Trait IUnexceptionalStreamWriterMethods 

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

Source

fn flush(self)

Flush() 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<u16>)

Write(u16) overload

Source

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

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

Source

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§

Source§

impl<__T: IUnexceptionalStreamWriter> IUnexceptionalStreamWriterMethods for __T

Available on crate feature system-io-unexceptionalstreamwriter only.