[][src]Struct widgetry::Choice

pub struct Choice<T> {
    pub label: String,
    pub data: T,
    pub(crate) hotkey: Option<MultiKey>,
    pub(crate) active: bool,
    pub(crate) tooltip: Option<String>,
    pub(crate) fg: Option<Color>,
}

Fields

label: Stringdata: Thotkey: Option<MultiKey>active: booltooltip: Option<String>fg: Option<Color>

Implementations

impl<T> Choice<T>[src]

pub fn new<S: Into<String>>(label: S, data: T) -> Choice<T>[src]

pub fn from(tuples: Vec<(String, T)>) -> Vec<Choice<T>>[src]

pub fn key(self, key: Key) -> Choice<T>[src]

pub fn multikey(self, mk: Option<MultiKey>) -> Choice<T>[src]

pub fn active(self, active: bool) -> Choice<T>[src]

pub fn tooltip<I: Into<String>>(self, info: I) -> Choice<T>[src]

pub fn fg(self, fg: Color) -> Choice<T>[src]

pub(crate) fn with_value<X>(&self, data: X) -> Choice<X>[src]

impl Choice<String>[src]

pub fn string(label: &str) -> Choice<String>[src]

pub fn strings<I: Into<String>>(list: Vec<I>) -> Vec<Choice<String>>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Choice<T> where
    T: RefUnwindSafe

impl<T> Send for Choice<T> where
    T: Send

impl<T> Sync for Choice<T> where
    T: Sync

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

impl<T> UnwindSafe for Choice<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> DowncastSync for T where
    T: Send + Sync + 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.

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