Trait plotters::drawing::IntoDrawingArea[][src]

pub trait IntoDrawingArea: DrawingBackend + Sized {
    fn into_drawing_area(self) -> DrawingArea<Self, Shift>;
}
Expand description

A type which can be converted into a root drawing area

Required methods

fn into_drawing_area(self) -> DrawingArea<Self, Shift>[src]

Convert the type into a root drawing area

Implementors