packs 0.2.0

A PackStream implementation written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::*;

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