From 837b550238aa671a591ccf282dddeab29cadb206 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 18 May 2024 04:49:42 +0200 Subject: Merging upstream version 1.71.1+dfsg1. Signed-off-by: Daniel Baumann --- vendor/criterion-plot/src/errorbar.rs | 293 ++++++++++++++++++++++++++++++++++ 1 file changed, 293 insertions(+) create mode 100755 vendor/criterion-plot/src/errorbar.rs (limited to 'vendor/criterion-plot/src/errorbar.rs') diff --git a/vendor/criterion-plot/src/errorbar.rs b/vendor/criterion-plot/src/errorbar.rs new file mode 100755 index 000000000..f7a823c5c --- /dev/null +++ b/vendor/criterion-plot/src/errorbar.rs @@ -0,0 +1,293 @@ +//! Error bar plots + +use std::borrow::Cow; +use std::iter::IntoIterator; + +use crate::data::Matrix; +use crate::traits::{self, Data, Set}; +use crate::{ + Color, Display, ErrorBarDefault, Figure, Label, LineType, LineWidth, Plot, PointSize, + PointType, Script, +}; + +/// Properties common to error bar plots +pub struct Properties { + color: Option, + label: Option>, + line_type: LineType, + linewidth: Option, + point_size: Option, + point_type: Option, + style: Style, +} + +impl ErrorBarDefault