Trait simple_stream::Blocking [] [src]

pub trait Blocking {
    fn b_recv(&mut self) -> Result<Box<Frame>, Error>;
    fn b_send(&mut self, frame: &Frame) -> Result<()Error>;
}

Required Methods

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

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

Implementors