pub struct ParkCapture {
pub id: String,
pub stream_url: String,
pub tuning: ParkTuning,
}Expand description
One stream camera selected for live park detection: its id, the MJPEG stream URL ffmpeg opens, and its per-camera tuning (framing is camera-specific, so the tuning is too — there are no shared defaults).
Fields§
§id: String§stream_url: String§tuning: ParkTuningTrait Implementations§
Source§impl Clone for ParkCapture
impl Clone for ParkCapture
Source§fn clone(&self) -> ParkCapture
fn clone(&self) -> ParkCapture
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 ParkCapture
impl RefUnwindSafe for ParkCapture
impl Send for ParkCapture
impl Sync for ParkCapture
impl Unpin for ParkCapture
impl UnsafeUnpin for ParkCapture
impl UnwindSafe for ParkCapture
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