libpq/print.rs
1#[derive(Clone, Debug)]
2pub struct Options {
3 /* print output field headings and row count */
4 pub header: bool,
5 /* fill align the fields */
6 pub align: bool,
7 /* old brain dead format */
8 pub standard: bool,
9 /* output HTML tables */
10 pub html3: bool,
11 /* expand tables */
12 pub expanded: bool,
13 /* use pager for output if needed */
14 pub pager: bool,
15 /* field separator */
16 pub field_sep: String,
17 /* attributes for HTML table element */
18 pub table_opt: String,
19 /* HTML table caption */
20 pub caption: String,
21 /* null-terminated array of replacement field names */
22 pub field_name: Vec<String>,
23}