Trait plotlib::style::Point [] [src]

pub trait Point {
    fn marker<T>(&mut self, value: T) -> &mut Self
    where
        T: Into<Marker>
;
fn get_marker(&self) -> &Option<Marker>;
fn colour<T>(&mut self, value: T) -> &mut Self
    where
        T: Into<String>
;
fn get_colour(&self) -> &Option<String>;
fn size<T>(&mut self, value: T) -> &mut Self
    where
        T: Into<f32>
;
fn get_size(&self) -> &Option<f32>; }

Required Methods

Implementors