Update to InfluxDB 2.0 and update all interfaces to work with it. MAC has been deprecated, since current `influxdb2` doesn't support non built-in types for read/write into the DB. Co-authored-by: Felipe Diniello <felipediniello@pm.me> Reviewed-on: #1
11 lines
247 B
Rust
11 lines
247 B
Rust
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
|
pub struct DynamicDeviceStatus {
|
|
id: String,
|
|
pos_x: f64,
|
|
pos_y: f64,
|
|
pos_z: f64,
|
|
speed_x: f64,
|
|
speed_y: f64,
|
|
pub last_seen: chrono::DateTime<chrono::Utc>,
|
|
}
|