[][src]Trait v4l::io::traits::Stream

pub trait Stream {
    type Item: ?Sized;
    pub fn start(&mut self) -> Result<()>;
pub fn stop(&mut self) -> Result<()>; }

Streaming I/O

Associated Types

Loading content...

Required methods

pub fn start(&mut self) -> Result<()>[src]

Start streaming, takes exclusive ownership of a device

pub fn stop(&mut self) -> Result<()>[src]

Stop streaming, frees all buffers

Loading content...

Implementors

impl Stream for v4l::io::userptr::stream::Stream[src]

type Item = [u8]

impl<'a> Stream for v4l::io::mmap::stream::Stream<'a>[src]

type Item = [u8]

Loading content...