use {
crate::UuidBytes,
byteorder::LE,
static_assertions::const_assert_eq,
zerocopy::{AsBytes, FromBytes, Unaligned, U64},
};
#[derive(Copy, Clone, Debug, Hash, PartialEq, AsBytes, FromBytes, Unaligned)]
#[repr(C, packed)]
pub struct Stripe {
pub devid: U64<LE>,
pub offset: U64<LE>,
pub dev_uuid: UuidBytes,
}
const_assert_eq!(std::mem::size_of::<Stripe>(), 32);