Lines Matching defs:Properties
11 pub struct Properties { struct
18 impl Default for Properties { implementation
29 impl Script for Properties { implementation
66 impl Set<Axes> for Properties { implementation
70 fn set(&mut self, axes: Axes) -> &mut Properties { in set()
76 impl Set<Color> for Properties { implementation
78 fn set(&mut self, color: Color) -> &mut Properties { in set()
84 impl Set<Label> for Properties { implementation
86 fn set(&mut self, label: Label) -> &mut Properties { in set()
92 impl Set<Opacity> for Properties { implementation
100 fn set(&mut self, opacity: Opacity) -> &mut Properties { in set()
125 type Properties = Properties; typedef
129 F: FnOnce(&mut Properties) -> &mut Properties, in plot()