Skip to main content

ReliabilityRead

Trait ReliabilityRead 

Source
pub trait ReliabilityRead {
    type Action;

    // Required method
    fn read(&mut self, frame: &[u8]) -> Self::Action;
}
Expand description

COP-1 receiver (FARM-1) state machine interface.

Required Associated Types§

Source

type Action

Action to take after processing a frame.

Required Methods§

Source

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

Processes an incoming frame through the reliability layer.

Implementors§