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
75 impl Set<Color> for Properties { implementation
77 fn set(&mut self, color: Color) -> &mut Properties { in set()
83 impl Set<Label> for Properties { implementation
85 fn set(&mut self, label: Label) -> &mut Properties { in set()
91 impl Set<LineType> for Properties { implementation
95 fn set(&mut self, lt: LineType) -> &mut Properties { in set()
101 impl Set<LineWidth> for Properties { implementation
107 fn set(&mut self, lw: LineWidth) -> &mut Properties { in set()
117 impl Set<PointSize> for Properties { implementation
123 fn set(&mut self, ps: PointSize) -> &mut Properties { in set()
133 impl Set<PointType> for Properties { implementation
135 fn set(&mut self, pt: PointType) -> &mut Properties { in set()
230 type Properties = Properties; typedef
234 F: FnOnce(&mut Properties) -> &mut Properties, in plot()