1
2
3
4
5
6
7
8
9
use crate::*;

#[derive(Debug, Clone, PartialEq, PackableStruct, Pack, Unpack)]
#[tag = 0x58]
pub struct Point2D {
    pub srid: i64,
    pub x: f64,
    pub y: f64,
}