pub enum EventType {
FrameStart,
FrameEnd,
SyncGap,
PartialClear,
IncompleteFrame,
InterleavedWrites,
SuspiciousCursorMove,
AnalysisComplete,
}Expand description
Type of flicker/tear event detected.
Variants§
FrameStart
Frame started with DEC ?2026h.
FrameEnd
Frame ended with DEC ?2026l.
SyncGap
Output occurred outside synchronized mode.
PartialClear
Erase operation (ED/EL) detected mid-frame.
IncompleteFrame
Frame started but never completed.
InterleavedWrites
Multiple frames overlapping.
SuspiciousCursorMove
Cursor moved without content update (suspicious).
AnalysisComplete
Analysis completed.
Trait Implementations§
impl Eq for EventType
impl StructuralPartialEq for EventType
Auto Trait Implementations§
impl Freeze for EventType
impl RefUnwindSafe for EventType
impl Send for EventType
impl Sync for EventType
impl Unpin for EventType
impl UnsafeUnpin for EventType
impl UnwindSafe for EventType
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