pub trait IDropdown_OptionDataListMethods: IDropdown_OptionDataList {
// Provided methods
fn get_options(self) -> List_1<Dropdown_OptionData> { ... }
fn set_options(self, value: impl Into<List_1<Dropdown_OptionData>>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_options(self) -> List_1<Dropdown_OptionData>
fn get_options(self) -> List_1<Dropdown_OptionData>
get_options() overload
Sourcefn set_options(self, value: impl Into<List_1<Dropdown_OptionData>>)
fn set_options(self, value: impl Into<List_1<Dropdown_OptionData>>)
set_options(crate::system::collections::generic::list_1::List_1<crate::unity_engine::ui::dropdown::Dropdown_OptionData>) 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: IDropdown_OptionDataList> IDropdown_OptionDataListMethods for __T
Available on crate feature
unity_engine-ui-dropdown only.