pub trait TuiPlugin: Send + Sync { // Required method fn make_tui_component( self: Arc<Self>, keymap: &'static KeyMap, ) -> Box<dyn Component<Msg, UserEvent>>; }
Return tui component for visualize oracle information.