Documentation
1
2
3
4
5
6
7
8
pub struct Tag(String, String);
pub struct Field(String, String);
pub struct Measurement {
    name: String,
    tags: Option<Vec<Tag>>,
    fields: Vec<Field>,
    timestamp: Option<i64>,
}