pub trait IBinDumpBinaryWriterMethods: IBinDumpBinaryWriter {
// Provided methods
fn ctor(self, s: impl Into<Stream>) { ... }
fn write(self, value: impl Into<u32>) { ... }
fn write_2(self, value: impl Into<i32>) { ... }
fn write_3(self, value: impl Into<Il2CppString>) { ... }
}Provided Methods§
Sourcefn write_3(self, value: impl Into<Il2CppString>)
fn write_3(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: IBinDumpBinaryWriter> IBinDumpBinaryWriterMethods for __T
Available on crate feature
moon_sharp-interpreter-io-bindumpbinarywriter only.