use {
byteorder::LE,
static_assertions::const_assert_eq,
zerocopy::{AsBytes, FromBytes, Unaligned, U16, U64},
};
#[derive(Copy, Clone, Debug, AsBytes, FromBytes, Unaligned)]
#[repr(C, packed)]
pub struct RootRef {
pub dirid: U64<LE>,
pub sequence: U64<LE>,
pub name_len: U16<LE>,
}
const_assert_eq!(std::mem::size_of::<RootRef>(), 18);