pub(super) trait MultiSeries: Series {
// Required method
fn with_defaults<D: Into<DataPoint>>(key: &str, data: Vec<D>) -> Self;
}Expand description
Trait for chart types that require one series for each data point.
Required Methods§
fn with_defaults<D: Into<DataPoint>>(key: &str, data: Vec<D>) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.