Trait ci2_async::AsyncCamera
source · pub trait AsyncCamera {
// Required method
fn frames(
&mut self,
bufsize: usize
) -> Result<Box<dyn Stream<Item = FrameResult> + Send + Unpin>>;
}
Expand description
Defines a method to return a stream of frames.