pub trait BBFrameReceiver {
// Required method
fn get_bbframe(&mut self) -> Result<BBFrame>;
}Expand description
Receiver of BBFrames.
This trait generalizes reception of BBFRAMEs and provides a method to receive validated BBFRAMEs one by one.
Required Methods§
Sourcefn get_bbframe(&mut self) -> Result<BBFrame>
fn get_bbframe(&mut self) -> Result<BBFrame>
Get and return a new validated BBFRAME.