pub struct DiffResult<T: Clone + PartialEq> {
pub input_label: String,
pub implementation_a: T,
pub implementation_b: T,
pub matches: bool,
}Expand description
Result of a differential test comparison.
Fields§
§input_label: String§implementation_a: T§implementation_b: T§matches: boolTrait Implementations§
Auto Trait Implementations§
impl<T> Freeze for DiffResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for DiffResult<T>where
T: RefUnwindSafe,
impl<T> Send for DiffResult<T>where
T: Send,
impl<T> Sync for DiffResult<T>where
T: Sync,
impl<T> Unpin for DiffResult<T>where
T: Unpin,
impl<T> UnsafeUnpin for DiffResult<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for DiffResult<T>where
T: UnwindSafe,
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