Skip to main content

ReliabilityWrite

Trait ReliabilityWrite 

Source
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.

Required Associated Types§

Source

type Action

Action to take after processing a frame.

Required Methods§

Source

fn write(&mut self, frame: &[u8]) -> Self::Action

Processes an outgoing frame through the reliability layer.

Implementors§