pub fn opt_cell<T: ToString>(v: &Option<T>) -> Cell
Helper: a Cell whose text is value.map_or("—", |v| &v.to_string()).
value.map_or("—", |v| &v.to_string())