conrod::UiId
[−]
[src]
type UiId = usize;
User interface identifier. Each widget must use a unique UiId
so that it's state can be
cached within the Ui
type. The reason we use a usize is because widgets are cached within
a Vec
, which is limited to a size of usize
elements.