Struct tgff::Table [] [src]

pub struct Table {
    pub name: String,
    pub id: usize,
    pub attributes: HashMap<String, f64>,
    pub columns: Vec<Column>,
}

A data table.

Fields

The name of the table.

The ID of the table.

Table attributes.

The columns of the table.