pub trait IntoDynElement<'a, DB: DrawingBackend, Coord: Clone> where
    Self: 'a, 
{ 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

Make the conversion

Implementors