Macro droom_ui::elements [] [src]

macro_rules! elements {
    () => { ... };
    ($($elem:expr),+,) => { ... };
    ($($elem:expr),*) => { ... };
}

Makes a Vec of Element trait objects.

This actually uses the Handle wrapper instead of Element due to the Sized requirement.

This should be passed to functions that expect a list of elements in the constructor.