[][src]Crate text_grid

A library to create formatted plain-text tables.

See Grid (High Level API) or GridBuf (Low Level API) for details.

Macros

cell

Creates a Cell using interpolation of runtime expressions.

Structs

Cell

Implementation of CellSource that can specify styles.

CellStyle

Cell`s style.

Grid

A builder used to create plain-text table from values.

GridBuf

A builder used to create plain-text table.

RowBuf

A builder used to create row of GridBuf.

RowSourceGridSchema

GridSchema implementation that use RowSource.

Enums

HorizontalAlignment

Possible horizontal alignments for cell's content.

Traits

CellSource

A data structure that can be formatted into cell.

GridSchema

Columns definition.

RowSource

A data structure that can be formatted into row.

RowWrite

Used to define column information.

Functions

cell

Create Cell from Display.

cell_by

Create Cell from closure that call std::write! macro.