Skip to main content

IBinDumpBinaryReaderMethods

Trait IBinDumpBinaryReaderMethods 

Source
pub trait IBinDumpBinaryReaderMethods: IBinDumpBinaryReader {
    // Provided methods
    fn ctor(self, s: impl Into<Stream>) { ... }
    fn read_int32(self) -> i32 { ... }
    fn read_u_int32(self) -> u32 { ... }
    fn read_string(self) -> Il2CppString { ... }
}

Provided Methods§

Source

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

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

Source

fn read_int32(self) -> i32

ReadInt32() overload

Source

fn read_u_int32(self) -> u32

ReadUInt32() overload

Source

fn read_string(self) -> Il2CppString

ReadString() 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: IBinDumpBinaryReader> IBinDumpBinaryReaderMethods for __T

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