[][src]Struct game::game::ChooseSomething

pub struct ChooseSomething<T> {
    panel: Panel,
    cb: Box<dyn Fn(T, &mut EventCtx, &mut App) -> Transition>,
}

Fields

panel: Panelcb: Box<dyn Fn(T, &mut EventCtx, &mut App) -> Transition>

Implementations

impl<T: 'static> ChooseSomething<T>[src]

pub fn new(
    ctx: &mut EventCtx,
    query: &str,
    choices: Vec<Choice<T>>,
    cb: Box<dyn Fn(T, &mut EventCtx, &mut App) -> Transition>
) -> Box<dyn State>
[src]

pub fn new_below(
    ctx: &mut EventCtx,
    rect: &ScreenRectangle,
    choices: Vec<Choice<T>>,
    cb: Box<dyn Fn(T, &mut EventCtx, &mut App) -> Transition>
) -> Box<dyn State>
[src]

Trait Implementations

impl<T: 'static> State for ChooseSomething<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for ChooseSomething<T>

impl<T> !Send for ChooseSomething<T>

impl<T> !Sync for ChooseSomething<T>

impl<T> Unpin for ChooseSomething<T>

impl<T> !UnwindSafe for ChooseSomething<T>

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