Module output_format

Source
Expand description

Customizable format of printing table.

§Example of table format

 sid | sname | gap
-----+-------+-----
   3 | Alice |   5
   6 | Joe   |   1
  10 | Boris |   5

§Example of list of rows format.

-[ RECORD 1 ]
sid   | 3
sname | Alice
gap   | 5
-[ RECORD 2 ]
sid   | 6
sname | Joe
gap   | 1
-[ RECORD 3 ]
sid   | 10
sname | Boris
gap   | 5

Re-exports§

pub use own::*;

Modules§

exposed
Exposed namespace of the module.
orphan
Orphan namespace of the module.
own
Own namespace of the module.
prelude
Prelude to use essentials: use my_module::prelude::*.