Lines Matching defs:Properties
14 pub struct Properties { struct
25 impl CurveDefault<Style> for Properties { argument
26 fn default(style: Style) -> Properties { in default()
40 impl Script for Properties { implementation
82 impl Set<Axes> for Properties { implementation
86 fn set(&mut self, axes: Axes) -> &mut Properties { in set()
92 impl Set<Color> for Properties { implementation
94 fn set(&mut self, color: Color) -> &mut Properties { in set()
100 impl Set<Label> for Properties { implementation
102 fn set(&mut self, label: Label) -> &mut Properties { in set()
108 impl Set<LineType> for Properties { implementation
112 fn set(&mut self, lt: LineType) -> &mut Properties { in set()
118 impl Set<LineWidth> for Properties { implementation
124 fn set(&mut self, lw: LineWidth) -> &mut Properties { in set()
134 impl Set<PointSize> for Properties { implementation
140 fn set(&mut self, ps: PointSize) -> &mut Properties { in set()
150 impl Set<PointType> for Properties { implementation
152 fn set(&mut self, pt: PointType) -> &mut Properties { in set()
247 type Properties = Properties; typedef
251 F: FnOnce(&mut Properties) -> &mut Properties, in plot()