use {
byteorder::LE,
static_assertions::const_assert_eq,
zerocopy::{AsBytes, FromBytes, Unaligned, I64, U32},
};
#[derive(Copy, Clone, Debug, AsBytes, FromBytes, Unaligned)]
#[repr(C, packed)]
pub struct Time {
pub timestamp: I64<LE>,
pub nanoseconds: U32<LE>,
}
const_assert_eq!(std::mem::size_of::<Time>(), 12);