pub trait ITextReader_NullTextReaderMethods: ITextReader_NullTextReader {
// Provided methods
fn ctor(self) { ... }
fn read(
self,
buffer: impl Into<Array<u16>>,
index: impl Into<i32>,
count: impl Into<i32>,
) -> i32 { ... }
fn read_line(self) -> Il2CppString { ... }
}Provided Methods§
Sourcefn read(
self,
buffer: impl Into<Array<u16>>,
index: impl Into<i32>,
count: impl Into<i32>,
) -> i32
fn read( 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
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: ITextReader_NullTextReader> ITextReader_NullTextReaderMethods for __T
Available on crate feature
system-io-textreader only.