Struct comfy_table::Table
source · pub struct Table { /* private fields */ }
Expand description
Implementations§
source§impl Table
impl Table
sourcepub fn trim_fmt(&self) -> String
pub fn trim_fmt(&self) -> String
This is an alternative fmt
function, which simply removes any trailing whitespaces.
Trailing whitespaces often occur, when using tables without a right border.
sourcepub fn lines(&self) -> impl Iterator<Item = String>
pub fn lines(&self) -> impl Iterator<Item = String>
This is an alternative to fmt
, but rather returns an iterator to each line, rather than
one String separated by newlines.
sourcepub fn set_header<T: Into<Row>>(&mut self, row: T) -> &mut Self
pub fn set_header<T: Into<Row>>(&mut self, row: T) -> &mut Self
Set the header row of the table. This is usually the title of each column.
There’ll be no header unless you explicitly set it with this function.
use comfy_table::{Table, Row};
let mut table = Table::new();
let header = Row::from(vec!["Header One", "Header Two"]);
table.set_header(header);
pub fn header(&self) -> Option<&Row>
sourcepub fn add_row<T: Into<Row>>(&mut self, row: T) -> &mut Self
pub fn add_row<T: Into<Row>>(&mut self, row: T) -> &mut Self
Add a new row to the table.
use comfy_table::{Table, Row};
let mut table = Table::new();
let row = Row::from(vec!["One", "Two"]);
table.add_row(row);
sourcepub fn add_row_if<P, T>(&mut self, predicate: P, row: T) -> &mut Selfwhere
P: Fn(usize, &T) -> bool,
T: Into<Row>,
pub fn add_row_if<P, T>(&mut self, predicate: P, row: T) -> &mut Selfwhere P: Fn(usize, &T) -> bool, T: Into<Row>,
Add a new row to the table if the predicate evaluates to true
.
use comfy_table::{Table, Row};
let mut table = Table::new();
let row = Row::from(vec!["One", "Two"]);
table.add_row_if(|index, row| true, row);
sourcepub fn add_rows<I>(&mut self, rows: I) -> &mut Selfwhere
I: IntoIterator,
I::Item: Into<Row>,
pub fn add_rows<I>(&mut self, rows: I) -> &mut Selfwhere I: IntoIterator, I::Item: Into<Row>,
Add multiple rows to the table.
use comfy_table::{Table, Row};
let mut table = Table::new();
let rows = vec![
Row::from(vec!["One", "Two"]),
Row::from(vec!["Three", "Four"])
];
table.add_rows(rows);
sourcepub fn add_rows_if<P, I>(&mut self, predicate: P, rows: I) -> &mut Selfwhere
P: Fn(usize, &I) -> bool,
I: IntoIterator,
I::Item: Into<Row>,
pub fn add_rows_if<P, I>(&mut self, predicate: P, rows: I) -> &mut Selfwhere P: Fn(usize, &I) -> bool, I: IntoIterator, I::Item: Into<Row>,
Add multiple rows to the table if the predicate evaluates to true
.
use comfy_table::{Table, Row};
let mut table = Table::new();
let rows = vec![
Row::from(vec!["One", "Two"]),
Row::from(vec!["Three", "Four"])
];
table.add_rows_if(|index, rows| true, rows);
sourcepub fn set_width(&mut self, width: u16) -> &mut Self
pub fn set_width(&mut self, width: u16) -> &mut Self
Enforce a max width that should be used in combination with dynamic content arrangement.
This is usually not necessary, if you plan to output your table to a tty,
since the terminal width can be automatically determined.
sourcepub fn width(&self) -> Option<u16>
pub fn width(&self) -> Option<u16>
Get the expected width of the table.
This will be Some(width)
, if the terminal width can be detected or if the table width is set via set_width.
If neither is not possible, None
will be returned.
This implies that both the Dynamic mode and the Percentage constraint won’t work.
sourcepub fn set_content_arrangement(
&mut self,
arrangement: ContentArrangement
) -> &mut Self
pub fn set_content_arrangement( &mut self, arrangement: ContentArrangement ) -> &mut Self
Specify how Comfy Table should arrange the content in your table.
use comfy_table::{Table, ContentArrangement};
let mut table = Table::new();
table.set_content_arrangement(ContentArrangement::Dynamic);
sourcepub fn content_arrangement(&self) -> ContentArrangement
pub fn content_arrangement(&self) -> ContentArrangement
Get the current content arrangement of the table.
sourcepub fn set_delimiter(&mut self, delimiter: char) -> &mut Self
pub fn set_delimiter(&mut self, delimiter: char) -> &mut Self
Set the delimiter used to split text in all cells.
A custom delimiter on a cell in will overwrite the column’s delimiter.
Normal text uses spaces (
) as delimiters. This is necessary to help comfy-table
understand the concept of words.
sourcepub fn force_no_tty(&mut self) -> &mut Self
pub fn force_no_tty(&mut self) -> &mut Self
In case you are sure you don’t want export tables to a tty or you experience problems with tty specific code, you can enforce a non_tty mode.
This disables:
- width lookup from the current tty
- Styling and attributes on cells (unless you use Table::enforce_styling)
If you use the dynamic content arrangement, you need to set the width of your desired table manually with set_width.
sourcepub fn use_stderr(&mut self) -> &mut Self
pub fn use_stderr(&mut self) -> &mut Self
Use this function to check whether stderr
is a tty.
The default is stdout
.
sourcepub fn is_tty(&self) -> bool
pub fn is_tty(&self) -> bool
Returns whether the table will be handled as if it’s printed to a tty.
By default, comfy-table looks at stdout
and checks whether it’s a tty.
This behavior can be changed via Table::force_no_tty and Table::use_stderr.
sourcepub fn enforce_styling(&mut self) -> &mut Self
pub fn enforce_styling(&mut self) -> &mut Self
Enforce terminal styling.
Only useful if you forcefully disabled tty, but still want those fancy terminal styles.
use comfy_table::Table;
let mut table = Table::new();
table.force_no_tty()
.enforce_styling();
sourcepub fn should_style(&self) -> bool
pub fn should_style(&self) -> bool
Returns whether the content of this table should be styled with the current settings and environment.
sourcepub fn style_text_only(&mut self)
pub fn style_text_only(&mut self)
By default, the whole content of a cells will be styled. Calling this function disables this behavior for all cells, resulting in only the text of cells being styled.
sourcepub fn set_constraints<T: IntoIterator<Item = ColumnConstraint>>(
&mut self,
constraints: T
) -> &mut Self
pub fn set_constraints<T: IntoIterator<Item = ColumnConstraint>>( &mut self, constraints: T ) -> &mut Self
Convenience method to set a ColumnConstraint for all columns at once. Constraints are used to influence the way the columns will be arranged. Check out their docs for more information.
Attention: This function should be called after at least one row (or the headers) has been added to the table. Before that, the columns won’t initialized.
If more constraints are passed than there are columns, any superfluous constraints will be ignored.
use comfy_table::{Width::*, CellAlignment, ColumnConstraint::*, ContentArrangement, Table};
let mut table = Table::new();
table.add_row(&vec!["one", "two", "three"])
.set_content_arrangement(ContentArrangement::Dynamic)
.set_constraints(vec![
UpperBoundary(Fixed(15)),
LowerBoundary(Fixed(20)),
]);
sourcepub fn load_preset(&mut self, preset: &str) -> &mut Self
pub fn load_preset(&mut self, preset: &str) -> &mut Self
This function creates a TableStyle from a given preset string.
Preset strings can be found in styling::presets::*
.
You can also write your own preset strings and use them with this function.
There’s the convenience method Table::current_style_as_preset, which prints you a preset
string from your current style configuration.
The function expects the to-be-drawn characters to be in the same order as in the TableComponent enum.
If the string isn’t long enough, the default ASCII_FULL style will be used for all remaining components.
If the string is too long, remaining charaacters will be simply ignored.
sourcepub fn current_style_as_preset(&mut self) -> String
pub fn current_style_as_preset(&mut self) -> String
Returns the current style as a preset string.
A pure convenience method, so you’re not force to fiddle with those preset strings yourself.
use comfy_table::Table;
use comfy_table::presets::UTF8_FULL;
let mut table = Table::new();
table.load_preset(UTF8_FULL);
assert_eq!(UTF8_FULL, table.current_style_as_preset())
sourcepub fn apply_modifier(&mut self, modifier: &str) -> &mut Self
pub fn apply_modifier(&mut self, modifier: &str) -> &mut Self
Modify a preset with a modifier string from modifiers.
For instance, the UTF8_ROUND_CORNERS modifies all corners to be round UTF8 box corners.
use comfy_table::Table;
use comfy_table::presets::UTF8_FULL;
use comfy_table::modifiers::UTF8_ROUND_CORNERS;
let mut table = Table::new();
table.load_preset(UTF8_FULL);
table.apply_modifier(UTF8_ROUND_CORNERS);
sourcepub fn set_style(
&mut self,
component: TableComponent,
character: char
) -> &mut Self
pub fn set_style( &mut self, component: TableComponent, character: char ) -> &mut Self
Define the char that will be used to draw a specific component.
Look at TableComponent to see all stylable components
If None
is supplied, the element won’t be displayed.
In case of a e.g. *BorderIntersection a whitespace will be used as placeholder,
unless related borders and and corners are set to None
as well.
For example, if TopBorderIntersections
is None
the first row would look like this:
+------ ------+
| this | test |
If in addition TopLeftCorner
,TopBorder
and TopRightCorner
would be None
as well,
the first line wouldn’t be displayed at all.
use comfy_table::Table;
use comfy_table::presets::UTF8_FULL;
use comfy_table::TableComponent::*;
let mut table = Table::new();
// Load the UTF8_FULL preset
table.load_preset(UTF8_FULL);
// Set all outer corners to round UTF8 corners
// This is basically the same as the UTF8_ROUND_CORNERS modifier
table.set_style(TopLeftCorner, '╭');
table.set_style(TopRightCorner, '╮');
table.set_style(BottomLeftCorner, '╰');
table.set_style(BottomRightCorner, '╯');
sourcepub fn style(&mut self, component: TableComponent) -> Option<char>
pub fn style(&mut self, component: TableComponent) -> Option<char>
Get a copy of the char that’s currently used for drawing this component.
use comfy_table::Table;
use comfy_table::TableComponent::*;
let mut table = Table::new();
assert_eq!(table.style(TopLeftCorner), Some('+'));
sourcepub fn remove_style(&mut self, component: TableComponent) -> &mut Self
pub fn remove_style(&mut self, component: TableComponent) -> &mut Self
Remove the style for a specific component of the table.
By default, a space will be used as a placeholder instead.
Though, if for instance all components of the left border are removed, the left border won’t be displayed.
sourcepub fn column_mut(&mut self, index: usize) -> Option<&mut Column>
pub fn column_mut(&mut self, index: usize) -> Option<&mut Column>
Get a mutable reference to a specific column.
sourcepub fn column_iter(&self) -> Iter<'_, Column>
pub fn column_iter(&self) -> Iter<'_, Column>
Iterator over all columns
sourcepub fn column_iter_mut(&mut self) -> IterMut<'_, Column>
pub fn column_iter_mut(&mut self) -> IterMut<'_, Column>
Get a mutable iterator over all columns.
use comfy_table::{Width::*, ColumnConstraint::*, Table};
let mut table = Table::new();
table.add_row(&vec!["First", "Second", "Third"]);
// Add a ColumnConstraint to each column (left->right)
// first -> min width of 10
// second -> max width of 8
// third -> fixed width of 10
let constraints = vec![
LowerBoundary(Fixed(10)),
UpperBoundary(Fixed(8)),
Absolute(Fixed(10)),
];
// Add the constraints to their respective column
for (column_index, column) in table.column_iter_mut().enumerate() {
let constraint = constraints.get(column_index).unwrap();
column.set_constraint(*constraint);
}
sourcepub fn column_cells_iter(&self, column_index: usize) -> ColumnCellIter<'_> ⓘ
pub fn column_cells_iter(&self, column_index: usize) -> ColumnCellIter<'_> ⓘ
Get a mutable iterator over cells of a column.
The iterator returns a nested Option<Option<Cell>>
, since there might be
rows that are missing this specific Cell.
use comfy_table::Table;
let mut table = Table::new();
table.add_row(&vec!["First", "Second"]);
table.add_row(&vec!["Third"]);
table.add_row(&vec!["Fourth", "Fifth"]);
// Create an iterator over the second column
let mut cell_iter = table.column_cells_iter(1);
assert_eq!(cell_iter.next().unwrap().unwrap().content(), "Second");
assert!(cell_iter.next().unwrap().is_none());
assert_eq!(cell_iter.next().unwrap().unwrap().content(), "Fifth");
assert!(cell_iter.next().is_none());
sourcepub fn column_cells_with_header_iter(
&self,
column_index: usize
) -> ColumnCellsWithHeaderIter<'_>
pub fn column_cells_with_header_iter( &self, column_index: usize ) -> ColumnCellsWithHeaderIter<'_>
Get a mutable iterator over cells of a column, including the header cell.
The header cell will be the very first cell returned.
The iterator returns a nested Option<Option<Cell>>
, since there might be
rows that are missing this specific Cell.
use comfy_table::Table;
let mut table = Table::new();
table.set_header(&vec!["A", "B"]);
table.add_row(&vec!["First", "Second"]);
table.add_row(&vec!["Third"]);
table.add_row(&vec!["Fourth", "Fifth"]);
// Create an iterator over the second column
let mut cell_iter = table.column_cells_with_header_iter(1);
assert_eq!(cell_iter.next().unwrap().unwrap().content(), "B");
assert_eq!(cell_iter.next().unwrap().unwrap().content(), "Second");
assert!(cell_iter.next().unwrap().is_none());
assert_eq!(cell_iter.next().unwrap().unwrap().content(), "Fifth");
assert!(cell_iter.next().is_none());
sourcepub fn row_mut(&mut self, index: usize) -> Option<&mut Row>
pub fn row_mut(&mut self, index: usize) -> Option<&mut Row>
Mutable reference to a specific row
sourcepub fn row_iter_mut(&mut self) -> IterMut<'_, Row>
pub fn row_iter_mut(&mut self) -> IterMut<'_, Row>
Get a mutable iterator over all rows.
use comfy_table::Table;
let mut table = Table::new();
table.add_row(&vec!["First", "Second", "Third"]);
// Add the constraints to their respective row
for row in table.row_iter_mut() {
row.max_height(5);
}
assert!(table.row_iter_mut().len() == 1);
sourcepub fn column_max_content_widths(&self) -> Vec<u16>
pub fn column_max_content_widths(&self) -> Vec<u16>
Return a vector representing the maximum amount of characters in any line of this column.
Attention This scans the whole current content of the table.
sourcepub fn discover_columns(&mut self)
pub fn discover_columns(&mut self)
Calling this might be necessary if you add new cells to rows that’re already added to the table.
If more cells than’re currently know to the table are added to that row, the table cannot know about these, since new Columns are only automatically detected when a new row is added.
To make sure everything works as expected, just call this function if you’re adding cells to rows that’re already added to the table.