#[repr(C)]pub struct DropDown {
pub choices: StringVec,
pub selected: usize,
pub on_choice_change: OptionDropDownOnChoiceChange,
}Fields§
§choices: StringVec§selected: usize§on_choice_change: OptionDropDownOnChoiceChangeImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DropDown
impl RefUnwindSafe for DropDown
impl Send for DropDown
impl Sync for DropDown
impl Unpin for DropDown
impl UnwindSafe for DropDown
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more