#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub struct TableCellStyle {
pub vertical_align: CellVerticalAlign,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub enum CellVerticalAlign {
#[default]
Top,
Middle,
Bottom,
}