Trait nannou::ui::widget::list::ItemSize[][src]

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

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

Required methods

pub fn update_list<D>(
    List<D, Self>,
    UpdateArgs<'_, '_, '_, '_, List<D, Self>>
) -> <List<D, Self> as Widget>::Event where
    D: Direction
[src]

Update the List widget.

pub fn size_item<W, D>(&self, widget: W, breadth: f64) -> W where
    D: Direction,
    W: Widget
[src]

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

Loading content...

Implementors

impl ItemSize for Dynamic[src]

impl ItemSize for Fixed[src]

Loading content...