usecrate::{HAlign, VAlign};/// Options for the grid system.
pubstructOptions{/// Default column span for all the cells of the grid. If a cell specifies
/// a column span it will be used instead of the grids default value.
pubcol_span:Option<usize>,
/// Default horizontal alignment for all the cells of the grid. If a cell specifies
/// a horizontal alignment it will be used instead of the grids default value.
pubh_align:Option<HAlign>,
/// Default vertical alignment for all the cells of the grid. If a cell specifies
/// a vertical alignment it will be used instead of the grids default value.
pubv_align:Option<VAlign>,
/// Default blank char for all the cells of the grid. If a cell specifies
/// a blank char it will be used instead of the grids default value.
pubblank_char:Option<char>,
}