Trait LiteEthClient

Source
pub trait LiteEthClient {
    // Required methods
    fn tx_done(
        &self,
        rc: Result<(), ErrorCode>,
        packet_buffer: &'static mut [u8],
    );
    fn rx_packet(&self, packet: &'static mut [u8], len: usize);
}

Required Methods§

Source

fn tx_done(&self, rc: Result<(), ErrorCode>, packet_buffer: &'static mut [u8])

Source

fn rx_packet(&self, packet: &'static mut [u8], len: usize)

Implementors§