Trait simple_stream::NonBlocking [] [src]

pub trait NonBlocking {
    fn nb_recv(&mut self) -> Result<Vec<Box<Frame>>, Error>;
    fn nb_send(&mut self, frame: &Frame) -> Result<()Error>;
}

Required Methods

fn nb_recv(&mut self) -> Result<Vec<Box<Frame>>, Error>

fn nb_send(&mut self, frame: &Frame) -> Result<()Error>

Implementors