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

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

Implementors