Trait plotters::drawing::IntoDrawingArea

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

A type which can be converted into a root drawing area

Required Methods§

source

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

Convert the type into a root drawing area

Object Safety§

This trait is not object safe.

Implementors§