pub trait ITextGenerator: IObject {
Show 22 methods
// Provided methods
fn m_ptr(self) -> IntPtr { ... }
fn set_m_ptr(self, value: IntPtr) { ... }
fn m_last_string(self) -> Il2CppString { ... }
fn set_m_last_string(self, value: Il2CppString) { ... }
fn m_last_settings(self) -> TextGenerationSettings { ... }
fn set_m_last_settings(self, value: TextGenerationSettings) { ... }
fn m_has_generated(self) -> bool { ... }
fn set_m_has_generated(self, value: bool) { ... }
fn m_last_valid(self) -> TextGenerationError { ... }
fn set_m_last_valid(self, value: TextGenerationError) { ... }
fn m_verts(self) -> List_1<UIVertex> { ... }
fn set_m_verts(self, value: List_1<UIVertex>) { ... }
fn m_characters(self) -> List_1<UICharInfo> { ... }
fn set_m_characters(self, value: List_1<UICharInfo>) { ... }
fn m_lines(self) -> List_1<UILineInfo> { ... }
fn set_m_lines(self, value: List_1<UILineInfo>) { ... }
fn m_cached_verts(self) -> bool { ... }
fn set_m_cached_verts(self, value: bool) { ... }
fn m_cached_characters(self) -> bool { ... }
fn set_m_cached_characters(self, value: bool) { ... }
fn m_cached_lines(self) -> bool { ... }
fn set_m_cached_lines(self, value: bool) { ... }
}Provided Methods§
fn m_ptr(self) -> IntPtr
fn set_m_ptr(self, value: IntPtr)
fn m_last_string(self) -> Il2CppString
fn set_m_last_string(self, value: Il2CppString)
fn m_last_settings(self) -> TextGenerationSettings
fn set_m_last_settings(self, value: TextGenerationSettings)
fn m_has_generated(self) -> bool
fn set_m_has_generated(self, value: bool)
fn m_last_valid(self) -> TextGenerationError
fn set_m_last_valid(self, value: TextGenerationError)
fn m_verts(self) -> List_1<UIVertex>
fn set_m_verts(self, value: List_1<UIVertex>)
fn m_characters(self) -> List_1<UICharInfo>
fn set_m_characters(self, value: List_1<UICharInfo>)
fn m_lines(self) -> List_1<UILineInfo>
fn set_m_lines(self, value: List_1<UILineInfo>)
fn m_cached_verts(self) -> bool
fn set_m_cached_verts(self, value: bool)
fn m_cached_characters(self) -> bool
fn set_m_cached_characters(self, value: bool)
fn m_cached_lines(self) -> bool
fn set_m_cached_lines(self, value: bool)
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.