Lines Matching defs:Properties
11 pub struct Properties { struct
18 impl Default for Properties { argument
29 impl Script for Properties { implementation
58 impl Set<Color> for Properties { implementation
60 fn set(&mut self, color: Color) -> &mut Properties { in set()
66 impl Set<Label> for Properties { implementation
68 fn set(&mut self, label: Label) -> &mut Properties { in set()
74 impl Set<LineType> for Properties { implementation
78 fn set(&mut self, lt: LineType) -> &mut Properties { in set()
84 impl Set<LineWidth> for Properties { implementation
90 fn set(&mut self, lw: LineWidth) -> &mut Properties { in set()
127 type Properties = Properties; typedef
135 F: FnOnce(&mut Properties) -> &mut Properties, in plot()