rl 0.4.0

A reinforcement learning library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod heatmap_scatter_plot;
pub mod help;
pub mod log;
pub mod plot;

use crossterm::event::Event;
pub use log::Logs;
pub use plot::Plots;
use ratatui::widgets::WidgetRef;

pub trait Component: WidgetRef {
    fn handle_ui_event(&mut self, event: &Event) -> bool;
}