Trait conrod::widget::list::ItemSize[][src]

pub trait ItemSize: Sized + Clone + Copy {
    fn update_list<D>(
        _: List<D, Self>,
        _: UpdateArgs<List<D, Self>>
    ) -> <List<D, Self> as Widget>::Event
    where
        D: Direction
;
fn size_item<W, D>(&self, widget: W, breadth: Scalar) -> W
    where
        W: Widget,
        D: Direction
; }

The way in which the List's items are sized. E.g. Fired or Dynamic.

Required Methods

Update the List widget.

Set the size for the given item widget and return it.

Implementors