flat/pathchart/
api.rs

1// We use this in the doc strings.
2#[allow(unused_imports)]
3use super::PathChart;
4
5/// Render configuration specific to [`PathChart`]s.
6///
7/// ### Example
8/// ```
9/// # use flat::PathChartConfig;
10/// let pathchart_config = PathChartConfig {
11///     ..PathChartConfig::default()
12/// };
13/// ```
14#[derive(Debug, Default)]
15pub struct PathChartConfig {}