tstorage 0.1.0

Embedded time-series database
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct DataPoint {
    pub timestamp: i64,
    pub value: f64,
}

#[derive(Debug)]
pub struct Row<'a> {
    pub metric: &'a str,
    pub data_point: DataPoint,
}