Skip to main content

IBinDumpBinaryWriterMethods

Trait IBinDumpBinaryWriterMethods 

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

Source

fn ctor(self, s: impl Into<Stream>)

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

Source

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

Write(u32) overload

Source

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

Write(i32) overload

Source

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§

Source§

impl<__T: IBinDumpBinaryWriter> IBinDumpBinaryWriterMethods for __T

Available on crate feature moon_sharp-interpreter-io-bindumpbinarywriter only.