Skip to main content

IStringReader

Trait IStringReader 

Source
pub trait IStringReader: ITextReader {
    // Provided methods
    fn s(self) -> Il2CppString { ... }
    fn set_s(self, value: Il2CppString) { ... }
    fn pos(self) -> i32 { ... }
    fn set_pos(self, value: i32) { ... }
    fn length(self) -> i32 { ... }
    fn set_length(self, value: i32) { ... }
}

Provided Methods§

Source

fn s(self) -> Il2CppString

Source

fn set_s(self, value: Il2CppString)

Source

fn pos(self) -> i32

Source

fn set_pos(self, value: i32)

Source

fn length(self) -> i32

Source

fn set_length(self, value: i32)

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§