/external/rust/crates/plotters/src/style/ |
D | color.rs | 4 use plotters_backend::{BackendColor, BackendStyle}; 9 pub trait Color: BackendStyle { 58 impl BackendStyle for RGBAColor { 79 impl<P: Palette> BackendStyle for PaletteColor<P> { 95 impl BackendStyle for RGBColor { 110 impl BackendStyle for HSLColor {
|
D | shape.rs | 2 use plotters_backend::{BackendColor, BackendStyle}; 41 impl BackendStyle for ShapeStyle {
|
D | text.rs | 6 use plotters_backend::{BackendColor, BackendCoord, BackendStyle, BackendTextStyle};
|
/external/rust/crates/plotters-backend/src/ |
D | lib.rs | 70 pub use style::{BackendColor, BackendStyle}; 136 fn draw_line<S: BackendStyle>( in draw_line() 150 fn draw_rect<S: BackendStyle>( in draw_rect() 163 fn draw_path<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in draw_path() argument 196 fn draw_circle<S: BackendStyle>( in draw_circle() 206 fn fill_polygon<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in fill_polygon() argument
|
D | style.rs | 19 pub trait BackendStyle { trait 29 impl BackendStyle for BackendColor {
|
/external/rust/crates/plotters/src/drawing/backend_impl/ |
D | mocked.rs | 6 BackendColor, BackendCoord, BackendStyle, BackendTextStyle, DrawingBackend, DrawingErrorKind, 149 fn draw_line<S: BackendStyle>( in draw_line() 169 fn draw_rect<S: BackendStyle>( in draw_rect() 190 fn draw_path<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in draw_path() argument 209 fn draw_circle<S: BackendStyle>( in draw_circle() 230 fn fill_polygon<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in fill_polygon() argument
|
/external/rust/crates/plotters-backend/src/rasterizer/ |
D | rect.rs | 1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind}; 3 pub fn draw_rect<B: DrawingBackend, S: BackendStyle>( in draw_rect()
|
D | line.rs | 1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind}; 3 pub fn draw_line<DB: DrawingBackend, S: BackendStyle>( in draw_line()
|
D | circle.rs | 1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind}; 86 fn draw_sweep_line<B: DrawingBackend, S: BackendStyle>( in draw_sweep_line() 124 fn draw_annulus<B: DrawingBackend, S: BackendStyle>( in draw_annulus() 275 pub fn draw_circle<B: DrawingBackend, S: BackendStyle>( in draw_circle()
|
D | polygon.rs | 1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind}; 72 pub fn fill_polygon<DB: DrawingBackend, S: BackendStyle>( in fill_polygon()
|
/external/rust/crates/plotters-svg/src/ |
D | svg.rs | 7 BackendColor, BackendCoord, BackendStyle, BackendTextStyle, DrawingBackend, DrawingErrorKind, 240 fn draw_line<S: BackendStyle>( in draw_line() 265 fn draw_rect<S: BackendStyle>( in draw_rect() 299 fn draw_path<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in draw_path() argument 327 fn fill_polygon<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in fill_polygon() argument 353 fn draw_circle<S: BackendStyle>( in draw_circle()
|
/external/rust/crates/plotters/examples/ |
D | console.rs | 4 BackendColor, BackendStyle, BackendTextStyle, DrawingBackend, DrawingErrorKind, 89 fn draw_line<S: BackendStyle>( in draw_line()
|
/external/rust/crates/plotters/benches/benches/ |
D | rasterizer.rs | 3 use plotters_backend::BackendStyle;
|
/external/rust/crates/plotters/src/element/ |
D | basic_shapes.rs | 3 use plotters_backend::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind};
|
/external/rust/crates/plotters/ |
D | CHANGELOG.md | 237 - New abstraction of backend style with `BackendStyle` trait which should be able to extend easier …
|