pub struct ByteDiff {
pub offset: usize,
pub round1_byte: u8,
pub round2_byte: u8,
}Expand description
Details about a byte difference found during determinism checking.
Fields§
§offset: usizeByte offset where the difference was found.
round1_byte: u8Byte value from the first run.
round2_byte: u8Byte value from the second run.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ByteDiff
impl<'de> Deserialize<'de> for ByteDiff
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ByteDiff
impl StructuralPartialEq for ByteDiff
Auto Trait Implementations§
impl Freeze for ByteDiff
impl RefUnwindSafe for ByteDiff
impl Send for ByteDiff
impl Sync for ByteDiff
impl Unpin for ByteDiff
impl UnsafeUnpin for ByteDiff
impl UnwindSafe for ByteDiff
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