pub trait IStreamReader_NullStreamReaderMethods: IStreamReader_NullStreamReader {
// Provided methods
fn ctor(self) { ... }
fn get_base_stream(self) -> Stream { ... }
fn dispose(self, disposing: impl Into<bool>) { ... }
fn peek(self) -> i32 { ... }
fn read(self) -> i32 { ... }
fn read_2(
self,
buffer: impl Into<Array<u16>>,
index: impl Into<i32>,
count: impl Into<i32>,
) -> i32 { ... }
fn read_line(self) -> Il2CppString { ... }
fn read_to_end(self) -> Il2CppString { ... }
fn read_buffer(self) -> i32 { ... }
}Provided Methods§
Sourcefn get_base_stream(self) -> Stream
fn get_base_stream(self) -> Stream
get_BaseStream() overload
Sourcefn read_2(
self,
buffer: impl Into<Array<u16>>,
index: impl Into<i32>,
count: impl Into<i32>,
) -> i32
fn read_2( self, buffer: impl Into<Array<u16>>, index: impl Into<i32>, count: impl Into<i32>, ) -> i32
Read(::unity::Array<u16>, i32, i32) overload
Sourcefn read_line(self) -> Il2CppString
fn read_line(self) -> Il2CppString
ReadLine() overload
Sourcefn read_to_end(self) -> Il2CppString
fn read_to_end(self) -> Il2CppString
ReadToEnd() overload
Sourcefn read_buffer(self) -> i32
fn read_buffer(self) -> i32
ReadBuffer() 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: IStreamReader_NullStreamReader> IStreamReader_NullStreamReaderMethods for __T
Available on crate feature
system-io-streamreader only.