useintmap::IntMap;usestd::fmt;pubstructFlowMeta<'a>{pubname:&'astr,
pubtag:u8,
pubvisible:bool,
}pubstructDataFrame<M, D>
where
M: fmt::Display,
{// metric contain something like a timestamp, or month names
pubmetric: M,
// data key is tag for stream meta (a.k.a column tag)
// D is
pubdata:IntMap<D>,
}