pub struct SegmentCapture {
pub id: String,
pub stream_url: String,
pub fps: f64,
pub window_ms: u64,
pub select_tuning: SelectTuning,
}Expand description
One stream camera for dense-stream segmented capture: its id, the MJPEG stream URL, the
capture fps (the gray cadence), the per-layer accumulation window_ms, and the
median-subtract select knobs. Like ParkCapture these are all camera-specific
(framing is) — there are no shared defaults.
Fields§
§id: String§stream_url: String§fps: f64§window_ms: u64§select_tuning: SelectTuningTrait Implementations§
Source§impl Clone for SegmentCapture
impl Clone for SegmentCapture
Source§fn clone(&self) -> SegmentCapture
fn clone(&self) -> SegmentCapture
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SegmentCapture
impl RefUnwindSafe for SegmentCapture
impl Send for SegmentCapture
impl Sync for SegmentCapture
impl Unpin for SegmentCapture
impl UnsafeUnpin for SegmentCapture
impl UnwindSafe for SegmentCapture
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