Home
last modified time | relevance | path

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

/external/rust/crates/criterion/src/plot/plotters_backend/
Dregression.rs196 PathElement::new(vec![(0.0, 0.0), (max_iters, base_point)], &DARK_RED).into_dyn(), in regression_comparison_figure()
201 .into_dyn(), in regression_comparison_figure()
211 PathElement::new(vec![(0.0, 0.0), (max_iters, point)], &DARK_BLUE).into_dyn(), in regression_comparison_figure()
216 .into_dyn(), in regression_comparison_figure()
/external/rust/crates/plotters/src/series/
Darea_series.rs51 Some(Polygon::new(data, self.area_style.clone()).into_dyn()) in next()
57 Some(PathElement::new(data, self.border_style.clone()).into_dyn()) in next()
Dline_series.rs25 .into_dyn(), in next()
30 Some(PathElement::new(data, self.style.clone()).into_dyn()) in next()
/external/rust/crates/plotters/src/element/
Ddynelem.rs64 fn into_dyn(self) -> DynElement<'a, DB, Coord>; in into_dyn() method
74 fn into_dyn(self) -> DynElement<'b, DB, Coord> { in into_dyn() function
/external/rust/crates/plotters/src/chart/
Dseries.rs52 self.draw_func = Some(Box::new(move |p| func(p).into_dyn())); in legend()
195 draw_func.unwrap_or_else(|| &|p: BackendCoord| EmptyElement::at(p).into_dyn()), in draw()
/external/rust/crates/plotters/
DCHANGELOG.md240 - Now elements support dynamic dispatch, use `element.into_dyn()` to convert the element into a run…