Struct plotlib::scatter::Style
[−]
[src]
pub struct Style { /* fields omitted */ }
Style
follows the 'optional builder' pattern
Each field is a Option
which start as None
Each can be set with setter methods and instances
of Style
can be overlaid to set many at once.
Settings will be cloned in and out of it.
Methods
impl Style
[src]
fn new() -> Self
fn overlay(&mut self, other: Self)
fn marker<T>(self, value: T) -> Self where
T: Into<Marker>,
T: Into<Marker>,
fn get_marker(&self) -> Marker
fn colour<T>(self, value: T) -> Self where
T: Into<String>,
T: Into<String>,