pub enum Decision {
Hold,
Clear,
Write(ScreenStateReport),
}Expand description
What the sweep decided for one target.
Variants§
Hold
Nothing to write (verdict unchanged and fresh, or no evidence yet).
Clear
Clear the stored verdict (pane gone / unreadable).
Write(ScreenStateReport)
Store this verdict.
Trait Implementations§
impl StructuralPartialEq for Decision
Auto Trait Implementations§
impl Freeze for Decision
impl RefUnwindSafe for Decision
impl Send for Decision
impl Sync for Decision
impl Unpin for Decision
impl UnsafeUnpin for Decision
impl UnwindSafe for Decision
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