Trait relm::WidgetTest [] [src]

pub trait WidgetTest: Widget {
    type Widgets;
    fn get_widgets(&self) -> Self::Widgets;
}

Trait implemented by the generator to ease the creation of tests of relm widgets using the view! macro.

Associated Types

Represents the structure holding all the widgets. Useful for tests.

Required Methods

Get the structure containing all the widgets. Useful for tests.

Implementors