Struct prettytable::format::consts::FORMAT_BOX_CHARS
source · pub struct FORMAT_BOX_CHARS { /* private fields */ }
Expand description
A table with borders and delimiters made with box characters
Example
┌────┬────┬────┐
│ t1 │ t2 │ t3 │
├────┼────┼────┤
│ 1 │ 1 │ 1 │
├────┼────┼────┤
│ 2 │ 2 │ 2 │
└────┴────┴────┘
Methods from Deref<Target = TableFormat>§
sourcepub fn get_padding(&self) -> (usize, usize)
pub fn get_padding(&self) -> (usize, usize)
Return a tuple with left and right padding
sourcepub fn get_indent(&self) -> usize
pub fn get_indent(&self) -> usize
Get global indentation in spaces used when rendering a table
sourcepub fn get_column_separator(&self, pos: ColumnPosition) -> Option<char>
pub fn get_column_separator(&self, pos: ColumnPosition) -> Option<char>
Returns the character used to separate columns.
pos
specify if the separator is left/right final or internal to the table
Trait Implementations§
source§impl Deref for FORMAT_BOX_CHARS
impl Deref for FORMAT_BOX_CHARS
§type Target = TableFormat
type Target = TableFormat
The resulting type after dereferencing.
source§fn deref(&self) -> &TableFormat
fn deref(&self) -> &TableFormat
Dereferences the value.