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§
Sourcefn read_int32(self) -> i32
fn read_int32(self) -> i32
ReadInt32() overload
Sourcefn read_u_int32(self) -> u32
fn read_u_int32(self) -> u32
ReadUInt32() overload
Sourcefn read_string(self) -> Il2CppString
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§
impl<__T: IBinDumpBinaryReader> IBinDumpBinaryReaderMethods for __T
Available on crate feature
moon_sharp-interpreter-io-bindumpbinaryreader only.