[][src]Struct widgetry::widgets::dropdown::Dropdown

pub struct Dropdown<T: Clone> {
    current_idx: usize,
    btn: Button,
    menu: Option<Menu<usize>>,
    label: String,
    is_persisten_split: bool,
    choices: Vec<Choice<T>>,
}

Fields

current_idx: usizebtn: Buttonmenu: Option<Menu<usize>>label: Stringis_persisten_split: boolchoices: Vec<Choice<T>>

Implementations

impl<T: 'static + PartialEq + Clone + Debug> Dropdown<T>[src]

pub fn new(
    ctx: &EventCtx<'_>,
    label: &str,
    default_value: T,
    choices: Vec<Choice<T>>,
    is_persisten_split: bool
) -> Dropdown<T>
[src]

impl<T: 'static + PartialEq + Clone> Dropdown<T>[src]

pub fn current_value(&self) -> T[src]

pub(crate) fn current_value_label(&self) -> &str[src]

impl<T: 'static + Clone> Dropdown<T>[src]

fn open_menu(&mut self, ctx: &mut EventCtx<'_>)[src]

Trait Implementations

impl<T: 'static + Clone> WidgetImpl for Dropdown<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Dropdown<T>[src]

impl<T> !Send for Dropdown<T>[src]

impl<T> !Sync for Dropdown<T>[src]

impl<T> Unpin for Dropdown<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Dropdown<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.