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

#[derive(Debug, Clone, PartialEq, PackableStruct, Pack, Unpack)]
#[tag = 0x64]
pub struct LocalDateTime {
    pub seconds: i64,
    pub nanoseconds: i64,
}