pub trait IntoDynElement<DB: DrawingBackend, Coord: Clone> {
// Required method
fn into_dyn(self) -> DynElement<DB, Coord>;
}
Expand description
The trait that makes the conversion from the statically dispatched element to the dynamically dispatched element
Required Methods§
Sourcefn into_dyn(self) -> DynElement<DB, Coord>
fn into_dyn(self) -> DynElement<DB, Coord>
Make the conversion