Searched refs:ErrorBar (Results 1 – 6 of 6) sorted by relevance
/external/rust/crates/criterion-plot/src/ |
D | errorbar.rs | 158 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 …]
|
D | prelude.rs | 5 pub use crate::errorbar::ErrorBar::{XErrorBars, XErrorLines, YErrorBars, YErrorLines};
|
/external/rust/crates/plotters/src/element/ |
D | errorbar.rs | 51 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()
|
D | mod.rs | 180 pub use errorbar::{ErrorBar, ErrorBarOrientH, ErrorBarOrientV};
|
/external/rust/crates/plotters/src/ |
D | lib.rs | 760 pub use crate::element::ErrorBar;
|
/external/rust/crates/plotters/examples/ |
D | errorbar.rs | 42 ErrorBar::new_vertical(*x, *yl, *ym, *yh, BLUE.filled(), 20) in main()
|