1 2 3 4 5 6 7
use crate::packet::Packet; #[derive(Debug)] pub struct RxData<'a> { pub rssi: u8, pub packet: Packet<'a>, }