Lines Matching defs:Properties
11 pub struct Properties { struct
18 impl Default for Properties { argument
29 impl Script for Properties { implementation
55 impl Set<Color> for Properties { implementation
57 fn set(&mut self, color: Color) -> &mut Properties { in set()
63 impl Set<Label> for Properties { implementation
65 fn set(&mut self, label: Label) -> &mut Properties { in set()
71 impl Set<LineType> for Properties { implementation
75 fn set(&mut self, lt: LineType) -> &mut Properties { in set()
81 impl Set<LineWidth> for Properties { implementation
87 fn set(&mut self, lw: LineWidth) -> &mut Properties { in set()
124 type Properties = Properties; typedef
132 F: FnOnce(&mut Properties) -> &mut Properties, in plot()