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§
Sourcefn into_drawing_area(self) -> DrawingArea<Self, Shift>
fn into_drawing_area(self) -> DrawingArea<Self, Shift>
Convert the type into a root drawing area
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.