usestd::borrow::Cow;pubstructDataTableProps{/// An optional title for the table.
pubtitle:Option<Cow<'static, str>>,
/// The size of the gap between the header and rows.
pubtable_gap:u16,
/// Whether this table determines column widths from left to right.
publeft_to_right:bool,
/// Whether this table is a basic table. This affects the borders.
pubis_basic:bool,
/// Whether to show the table scroll position.
pubshow_table_scroll_position:bool,
/// Whether to show the current entry as highlighted when not focused.
pubshow_current_entry_when_unfocused:bool,
}