# ux-indicators Actively WIP ```rust pub struct FlowMeta<'a> { pub name: &'a str, pub tag: u8, pub visible: bool } pub struct DataFrame where M: fmt::Display, { // metric contain something like a timestamp, or month names pub metric: M, // data key is tag for stream meta (a.k.a column tag) // D is pub data: HashMap, } ```