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

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

A type which can be converted into a root drawing area

Required methods

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

Convert the type into a root drawing area

Loading content...

Implementors

impl<T: DrawingBackend> IntoDrawingArea for T[src]

Loading content...