pub struct FlickerAnalysis {
pub flicker_free: bool,
pub stats: AnalysisStats,
pub issues: Vec<FlickerEvent>,
pub jsonl: String,
}Expand description
Result of flicker detection analysis.
Fields§
§flicker_free: boolWhether the stream is flicker-free.
stats: AnalysisStatsAnalysis statistics.
issues: Vec<FlickerEvent>Detected events (errors and warnings only).
jsonl: StringFull JSONL log.
Implementations§
Source§impl FlickerAnalysis
impl FlickerAnalysis
Sourcepub fn assert_flicker_free(&self)
pub fn assert_flicker_free(&self)
Assert that the stream is flicker-free, panicking with details if not.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlickerAnalysis
impl RefUnwindSafe for FlickerAnalysis
impl Send for FlickerAnalysis
impl Sync for FlickerAnalysis
impl Unpin for FlickerAnalysis
impl UnsafeUnpin for FlickerAnalysis
impl UnwindSafe for FlickerAnalysis
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