pub enum RecordMatch {
Exact,
Recolor,
Mismatch,
}Expand description
The result of verifying one incoming record against its retained counterpart under a segment transform.
Variants§
Exact
Recolor
Geometry matched; only the solid color moved. Replayable with a 16-byte patch into the retained buffer.
Mismatch
Trait Implementations§
Source§impl Clone for RecordMatch
impl Clone for RecordMatch
Source§fn clone(&self) -> RecordMatch
fn clone(&self) -> RecordMatch
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 moreimpl Copy for RecordMatch
Source§impl Debug for RecordMatch
impl Debug for RecordMatch
impl Eq for RecordMatch
Source§impl PartialEq for RecordMatch
impl PartialEq for RecordMatch
impl StructuralPartialEq for RecordMatch
Auto Trait Implementations§
impl Freeze for RecordMatch
impl RefUnwindSafe for RecordMatch
impl Send for RecordMatch
impl Sync for RecordMatch
impl Unpin for RecordMatch
impl UnsafeUnpin for RecordMatch
impl UnwindSafe for RecordMatch
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