pub trait Interface {
    fn try_get_packet(&mut self) -> Result<Packet, InterfaceError>;
    fn try_send_packet(&mut self, packet: &Packet) -> Result<(), InterfaceError>;
}

Required Methods

Implementors