TuiPlugin

Trait TuiPlugin 

Source
pub trait TuiPlugin: Send + Sync {
    // Required method
    fn make_tui_component(
        self: Arc<Self>,
        keymap: &'static KeyMap,
    ) -> Box<dyn Component<Msg, UserEvent>>;
}

Required Methods§

Source

fn make_tui_component( self: Arc<Self>, keymap: &'static KeyMap, ) -> Box<dyn Component<Msg, UserEvent>>

Return tui component for visualize oracle information.

Implementors§