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