pub struct FrameComparison {
pub index: usize,
pub baseline_checksum: u64,
pub candidate_checksum: u64,
pub matched: bool,
}Expand description
Per-frame comparison detail.
Fields§
§index: usizeFrame index (0-based).
baseline_checksum: u64Baseline frame checksum.
candidate_checksum: u64Candidate frame checksum.
matched: boolWhether this frame matched.
Trait Implementations§
Source§impl Clone for FrameComparison
impl Clone for FrameComparison
Source§fn clone(&self) -> FrameComparison
fn clone(&self) -> FrameComparison
Returns a duplicate of the value. Read more
1.0.0 · 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 FrameComparison
impl RefUnwindSafe for FrameComparison
impl Send for FrameComparison
impl Sync for FrameComparison
impl Unpin for FrameComparison
impl UnsafeUnpin for FrameComparison
impl UnwindSafe for FrameComparison
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