Expand description

Server-side chart handling.

Note that most types in this crate implement (de)serialization to/from json. These types implement the Json trait which provides straightforward conversion functions. This is used heavily for server/client exchanges.

Basic Workflow

All allocation-related data is stored in a global state in the data module. It features a Watcher type which, after starting it, will monitor a directory for init and diff files.

Re-exports

pub extern crate alloc_data;
pub extern crate palette;
pub extern crate plotters;
pub use chart::Chart;

Modules

Chart types and helpers.

Color handling.

Global data about allocations.

Data filtering.

Client/server messages.

Point representation.

Common imports for this crate.

Structs

Aggregates some charts.

Traits

Trait implemented by all charts.