pub trait LayoutEngine<E> {
    fn layout(
        &mut self,
        mapping: &CoordsMapping,
        tree: &WidgetUnit
    ) -> Result<Layout, E>; }

Required Methods

Implementations on Foreign Types

Implementors