[][src]Trait plotlib::style::Line

pub trait Line {
    fn colour<T>(&mut self, value: T) -> &mut Self
    where
        T: Into<String>
;
fn get_colour(&self) -> &Option<String>;
fn width<T>(&mut self, value: T) -> &mut Self
    where
        T: Into<f32>
;
fn get_width(&self) -> &Option<f32>; }

Required methods

fn colour<T>(&mut self, value: T) -> &mut Self where
    T: Into<String>, 

fn get_colour(&self) -> &Option<String>

fn width<T>(&mut self, value: T) -> &mut Self where
    T: Into<f32>, 

fn get_width(&self) -> &Option<f32>

Loading content...

Implementors

impl Line for plotlib::function::Style[src]

impl Line for plotlib::line::Style[src]

Loading content...