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§
Sourcefn write_5(
self,
buffer: impl Into<Array<u8>>,
index: impl Into<i32>,
count: impl Into<i32>,
)
fn write_5( self, buffer: impl Into<Array<u8>>, index: impl Into<i32>, count: impl Into<i32>, )
Write(::unity::Array<u8>, i32, i32) overload
Sourcefn write_15(self, value: impl Into<Il2CppString>)
fn write_15(self, value: impl Into<Il2CppString>)
Write(::unity::Il2CppString) overload
Sourcefn write7_bit_encoded_int(self, value: impl Into<i32>)
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§
impl<__T: IBinaryWriter> IBinaryWriterMethods for __T
Available on crate feature
system-io-binarywriter only.