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

Convert the type into a root drawing area

Implementors