[][src]Trait imgui_ext::Gui

pub trait Gui {
    type Events;
    fn draw_gui(ui: &Ui, ext: &mut Self) -> Self::Events;
}

Trait implemented by the derive macro.

Associated Types

type Events

Loading content...

Required methods

fn draw_gui(ui: &Ui, ext: &mut Self) -> Self::Events

Loading content...

Implementations on Foreign Types

impl<T: Gui> Gui for Option<T>[src]

type Events = T::Events

impl<T: Gui> Gui for Box<T>[src]

type Events = T::Events

Loading content...

Implementors

Loading content...