pub enum PlainCapture {
Sample {
id: String,
grab: FrameGrab,
},
Stream {
id: String,
open: StreamOpen,
},
}Expand description
How a camera contributes to a plain run: Sample grabs a JPEG every tick
(snapshot-only cameras); Stream records the camera’s continuous MJPEG stream
to one file (cameras that expose a real /stream — the actual video, not
time-sampled frames).
Variants§
Auto Trait Implementations§
impl !RefUnwindSafe for PlainCapture
impl !UnwindSafe for PlainCapture
impl Freeze for PlainCapture
impl Send for PlainCapture
impl Sync for PlainCapture
impl Unpin for PlainCapture
impl UnsafeUnpin for PlainCapture
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more