Lines Matching defs:Properties
14 pub struct Properties { struct
24 impl ErrorBarDefault<Style> for Properties { argument
25 fn default(style: Style) -> Properties { in default()
38 impl Script for Properties { implementation
72 impl Set<Color> for Properties { implementation
74 fn set(&mut self, color: Color) -> &mut Properties { in set()
80 impl Set<Label> for Properties { implementation
82 fn set(&mut self, label: Label) -> &mut Properties { in set()
88 impl Set<LineType> for Properties { implementation
92 fn set(&mut self, lt: LineType) -> &mut Properties { in set()
98 impl Set<LineWidth> for Properties { implementation
104 fn set(&mut self, lw: LineWidth) -> &mut Properties { in set()
114 impl Set<PointSize> for Properties { implementation
120 fn set(&mut self, ps: PointSize) -> &mut Properties { in set()
130 impl Set<PointType> for Properties { implementation
132 fn set(&mut self, pt: PointType) -> &mut Properties { in set()
227 type Properties = Properties; typedef
231 F: FnOnce(&mut Properties) -> &mut Properties, in plot()