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

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

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>

Loading content...

Implementors

impl Point for Style[src]

Loading content...