Trait stijl::LockableStream [] [src]

pub trait LockableStream: Stream {
    fn lock<'a>(&'a self) -> Box<Stream + 'a>;
}

A Stream with synchronized access.

Required Methods

Lock the stream, returning a writable guard.

Implementors