pub trait ReliabilityWrite {
type Action;
// Required method
fn write(&mut self, frame: &[u8]) -> Self::Action;
}Expand description
COP-1 sender (FOP-1) state machine interface.
pub trait ReliabilityWrite {
type Action;
// Required method
fn write(&mut self, frame: &[u8]) -> Self::Action;
}COP-1 sender (FOP-1) state machine interface.