[][src]Struct widgetry::PersistentSplit

pub struct PersistentSplit<T: Clone + PartialEq> {
    current_value: T,
    btn: Button,
    spacer: JustDraw,
    dropdown: Dropdown<T>,
}

Fields

current_value: Tbtn: Buttonspacer: JustDrawdropdown: Dropdown<T>

Implementations

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

pub fn new<MK: Into<Option<MultiKey>>>(
    ctx: &EventCtx<'_>,
    label: &str,
    default_value: T,
    hotkey: MK,
    choices: Vec<Choice<T>>
) -> Widget
[src]

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

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

Trait Implementations

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

Auto Trait Implementations

impl<T> !RefUnwindSafe for PersistentSplit<T>

impl<T> !Send for PersistentSplit<T>

impl<T> !Sync for PersistentSplit<T>

impl<T> Unpin for PersistentSplit<T> where
    T: Unpin

impl<T> UnwindSafe for PersistentSplit<T> where
    T: UnwindSafe

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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,