Skip to main content

IBinaryWriterMethods

Trait IBinaryWriterMethods 

Source
pub trait IBinaryWriterMethods: IBinaryWriter {
Show 21 methods // Provided methods fn ctor(self) { ... } fn ctor_2(self, output: impl Into<Stream>) { ... } fn dispose(self, disposing: impl Into<bool>) { ... } fn dispose_2(self) { ... } fn flush(self) { ... } fn write(self, value: impl Into<bool>) { ... } fn write_2(self, value: impl Into<u8>) { ... } fn write_3(self, value: impl Into<i8>) { ... } fn write_4(self, buffer: impl Into<Array<u8>>) { ... } fn write_5( self, buffer: impl Into<Array<u8>>, index: impl Into<i32>, count: impl Into<i32>, ) { ... } fn write_6(self, ch: impl Into<u16>) { ... } fn write_7(self, chars: impl Into<Array<u16>>) { ... } fn write_8(self, value: impl Into<f64>) { ... } fn write_9(self, value: impl Into<i16>) { ... } fn write_10(self, value: impl Into<i32>) { ... } fn write_11(self, value: impl Into<u32>) { ... } fn write_12(self, value: impl Into<i64>) { ... } fn write_13(self, value: impl Into<u64>) { ... } fn write_14(self, value: impl Into<f32>) { ... } fn write_15(self, value: impl Into<Il2CppString>) { ... } fn write7_bit_encoded_int(self, value: impl Into<i32>) { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn ctor_2(self, output: impl Into<Stream>)

.ctor(crate::system::io::stream::Stream) overload

Source

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

Dispose(bool) overload

Source

fn dispose_2(self)

Dispose() overload

Source

fn flush(self)

Flush() overload

Source

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

Write(bool) overload

Source

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

Write(u8) overload

Source

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

Write(i8) overload

Source

fn write_4(self, buffer: impl Into<Array<u8>>)

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

Source

fn write_5( self, buffer: impl Into<Array<u8>>, index: impl Into<i32>, count: impl Into<i32>, )

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

Source

fn write_6(self, ch: impl Into<u16>)

Write(u16) overload

Source

fn write_7(self, chars: impl Into<Array<u16>>)

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

Source

fn write_8(self, value: impl Into<f64>)

Write(f64) overload

Source

fn write_9(self, value: impl Into<i16>)

Write(i16) overload

Source

fn write_10(self, value: impl Into<i32>)

Write(i32) overload

Source

fn write_11(self, value: impl Into<u32>)

Write(u32) overload

Source

fn write_12(self, value: impl Into<i64>)

Write(i64) overload

Source

fn write_13(self, value: impl Into<u64>)

Write(u64) overload

Source

fn write_14(self, value: impl Into<f32>)

Write(f32) overload

Source

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

Write(::unity::Il2CppString) overload

Source

fn write7_bit_encoded_int(self, value: impl Into<i32>)

Write7BitEncodedInt(i32) 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: IBinaryWriter> IBinaryWriterMethods for __T

Available on crate feature system-io-binarywriter only.