Lines Matching defs:Properties
11 pub struct Properties { struct
18 impl Default for Properties { argument
29 impl Script for Properties { implementation
63 impl Set<Axes> for Properties { implementation
67 fn set(&mut self, axes: Axes) -> &mut Properties { in set()
73 impl Set<Color> for Properties { implementation
75 fn set(&mut self, color: Color) -> &mut Properties { in set()
81 impl Set<Label> for Properties { implementation
83 fn set(&mut self, label: Label) -> &mut Properties { in set()
89 impl Set<Opacity> for Properties { implementation
97 fn set(&mut self, opacity: Opacity) -> &mut Properties { in set()
122 type Properties = Properties; typedef
126 F: FnOnce(&mut Properties) -> &mut Properties, in plot()