pub trait ReceiveMsgBytes {
    // Required method
    fn receive_msg_bytes(
        &mut self,
        msg_bytes: &[u8],
        complete: &mut bool
    ) -> bool;
}

Required Methods§

source

fn receive_msg_bytes(&mut self, msg_bytes: &[u8], complete: &mut bool) -> bool

Implementors§