Expand description
A real-time graphing experiment.
rt-graph uses GTK (via the gtk-rs Rust bindings) for its UI and is designed to be embedded into any gtk::Container in your application.
Modules§
- observable_
value - An implementation of the Observer pattern.
Structs§
- Color
- A color in RGB format.
- Config
- The configuration required by a
Graph
orGraphWithControls
- Config
Builder - Builder for
Config
. - Graph
- A GTK widget that draws a graph.
- Graph
With Controls - A GTK widget that contains a graph and controls to navigate it.
- Null
Data Source - A
DataSource
that returns no data points. - Point
- A data point on a graph.
- Signal
- Implements a broadcast-listener / callback / observable pattern.
- Test
Data Generator - A struct that implements
DataSource
by showing dummy test data. - View
- Describes what is currently showing on the graph.
Enums§
- Error
- Represents an error that could occur using the crate
- Point
Style - The style of point to draw
- View
Mode - Describes the display mode of the graph
Traits§
- Data
Source - Implement this to get your own data into a
Graph
.