[][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

Implementors

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