pub struct RegionWatch {
pub index: usize,
pub label: String,
pub monitor: usize,
pub score: f64,
pub matching: bool,
}Expand description
One watched region’s final state — a row of wait’s report.
Fields§
§index: usizeIndex into session.selections — this row’s identity.
label: String§monitor: usize§score: f64Correlation with the saved crop at the last poll.
matching: boolWhether that score cleared the floor. Reported per region because the aggregate cannot say which one held things up.
Trait Implementations§
Source§impl Clone for RegionWatch
impl Clone for RegionWatch
Source§fn clone(&self) -> RegionWatch
fn clone(&self) -> RegionWatch
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 moreSource§impl Debug for RegionWatch
impl Debug for RegionWatch
Source§impl PartialEq for RegionWatch
impl PartialEq for RegionWatch
Source§impl Serialize for RegionWatch
impl Serialize for RegionWatch
impl StructuralPartialEq for RegionWatch
Auto Trait Implementations§
impl Freeze for RegionWatch
impl RefUnwindSafe for RegionWatch
impl Send for RegionWatch
impl Sync for RegionWatch
impl Unpin for RegionWatch
impl UnsafeUnpin for RegionWatch
impl UnwindSafe for RegionWatch
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