1 2 3 4 5 6 7 8 9
use dust_dds_derive::TypeSupport; use alloc::vec::Vec; // #[derive(Debug, PartialEq, Eq, Clone, Copy, TypeSupport)] // pub struct Bytes<'a>(pub &'a [u8]); #[derive(Debug, PartialEq, Eq, Clone, TypeSupport)] pub struct ByteBuf(pub Vec<u8>);