pub trait IHelpItemList: IMonoBehaviour {
// Provided methods
fn m_situation_type(self) -> HelpManager_SituationType { ... }
fn set_m_situation_type(self, value: HelpManager_SituationType) { ... }
fn m_list(self) -> Array<HelpItemBase> { ... }
fn set_m_list(self, value: Array<HelpItemBase>) { ... }
}Provided Methods§
fn m_situation_type(self) -> HelpManager_SituationType
fn set_m_situation_type(self, value: HelpManager_SituationType)
fn m_list(self) -> Array<HelpItemBase>
fn set_m_list(self, value: Array<HelpItemBase>)
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.