packs/std_structs/
point2d.rs

1use crate::*;
2
3#[derive(Debug, Clone, PartialEq, Pack, Unpack)]
4#[tag = 0x58]
5pub struct Point2D {
6    pub srid: i64,
7    pub x: f64,
8    pub y: f64,
9}