Struct prettytable::format::consts::FORMAT_DEFAULT
source · pub struct FORMAT_DEFAULT { /* private fields */ }
Expand description
Default table format
Example
+----+----+
| T1 | T2 |
+====+====+
| a | b |
+----+----+
| d | c |
+----+----+
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_DEFAULT
impl Deref for FORMAT_DEFAULT
§type Target = TableFormat
type Target = TableFormat
The resulting type after dereferencing.
source§fn deref(&self) -> &TableFormat
fn deref(&self) -> &TableFormat
Dereferences the value.