Home
last modified time | relevance | path

Searched refs:ErrorBar (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/criterion-plot/src/
Derrorbar.rs158 pub enum ErrorBar<X, Y, L, H> { enum
205 impl<X, Y, L, H> ErrorBar<X, Y, L, H> { impl
208 ErrorBar::XErrorBars { .. } => Style::XErrorBars, in style()
209 ErrorBar::XErrorLines { .. } => Style::XErrorLines, in style()
210 ErrorBar::YErrorBars { .. } => Style::YErrorBars, in style()
211 ErrorBar::YErrorLines { .. } => Style::YErrorLines, in style()
216 impl<X, Y, L, H> traits::Plot<ErrorBar<X, Y, L, H>> for Figure
229 fn plot<F>(&mut self, e: ErrorBar<X, Y, L, H>, configure: F) -> &mut Figure in plot()
237 ErrorBar::XErrorBars { in plot()
243 | ErrorBar::XErrorLines { in plot()
[all …]
Dprelude.rs5 pub use crate::errorbar::ErrorBar::{XErrorBars, XErrorLines, YErrorBars, YErrorLines};
/external/rust/crates/plotters/src/element/
Derrorbar.rs51 pub struct ErrorBar<K, V, O: ErrorBarOrient<K, V>> { struct
59 impl<K, V> ErrorBar<K, V, ErrorBarOrientV<K, V>> { argument
78 impl<K, V> ErrorBar<K, V, ErrorBarOrientH<K, V>> { impl
98 for &'a ErrorBar<K, V, O>
110 impl<K, V, O: ErrorBarOrient<K, V>, DB: DrawingBackend> Drawable<DB> for ErrorBar<K, V, O> { implementation
136 let v = ErrorBar::new_vertical(100, 20, 50, 70, WHITE.filled().stroke_width(5), 3); in test_preserve_stroke_width()
137 let h = ErrorBar::new_horizontal(100, 20, 50, 70, WHITE.filled().stroke_width(5), 3); in test_preserve_stroke_width()
Dmod.rs180 pub use errorbar::{ErrorBar, ErrorBarOrientH, ErrorBarOrientV};
/external/rust/crates/plotters/src/
Dlib.rs760 pub use crate::element::ErrorBar;
/external/rust/crates/plotters/examples/
Derrorbar.rs42 ErrorBar::new_vertical(*x, *yl, *ym, *yh, BLUE.filled(), 20) in main()