pub trait IRingInfoController: IMonoBehaviour {
// Provided methods
fn m_ring_name(self) -> TextMeshProUGUI { ... }
fn set_m_ring_name(self, value: TextMeshProUGUI) { ... }
fn m_ring_condition_icon_image(self) -> Image { ... }
fn set_m_ring_condition_icon_image(self, value: Image) { ... }
fn m_god_name(self) -> TextMeshProUGUI { ... }
fn set_m_god_name(self, value: TextMeshProUGUI) { ... }
fn m_ring_image(self) -> GameObject { ... }
fn set_m_ring_image(self, value: GameObject) { ... }
fn m_message(self) -> TextMeshProUGUI { ... }
fn set_m_message(self, value: TextMeshProUGUI) { ... }
fn m_condition_icons(self) -> List_1<Sprite> { ... }
fn set_m_condition_icons(self, value: List_1<Sprite>) { ... }
}Provided Methods§
fn m_ring_name(self) -> TextMeshProUGUI
fn set_m_ring_name(self, value: TextMeshProUGUI)
fn m_ring_condition_icon_image(self) -> Image
fn set_m_ring_condition_icon_image(self, value: Image)
fn m_god_name(self) -> TextMeshProUGUI
fn set_m_god_name(self, value: TextMeshProUGUI)
fn m_ring_image(self) -> GameObject
fn set_m_ring_image(self, value: GameObject)
fn m_message(self) -> TextMeshProUGUI
fn set_m_message(self, value: TextMeshProUGUI)
fn m_condition_icons(self) -> List_1<Sprite>
fn set_m_condition_icons(self, value: List_1<Sprite>)
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.