pub trait ReceivedSample: Send + Sync { // Required method fn get(&self) -> Cow<'_, [u8]>; }
A message received from the communication layer.
Access the message’s data.