pub enum ProfileCompareMode {
None,
Report,
Strict,
}Expand description
Comparison mode for cross-profile output checks.
Variants§
None
Do not compare outputs across profiles.
Report
Report diffs to stderr but do not fail.
Strict
Fail the test on the first diff.
Implementations§
Trait Implementations§
Source§impl Clone for ProfileCompareMode
impl Clone for ProfileCompareMode
Source§fn clone(&self) -> ProfileCompareMode
fn clone(&self) -> ProfileCompareMode
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 moreSource§impl Debug for ProfileCompareMode
impl Debug for ProfileCompareMode
Source§impl PartialEq for ProfileCompareMode
impl PartialEq for ProfileCompareMode
impl Copy for ProfileCompareMode
impl Eq for ProfileCompareMode
impl StructuralPartialEq for ProfileCompareMode
Auto Trait Implementations§
impl Freeze for ProfileCompareMode
impl RefUnwindSafe for ProfileCompareMode
impl Send for ProfileCompareMode
impl Sync for ProfileCompareMode
impl Unpin for ProfileCompareMode
impl UnsafeUnpin for ProfileCompareMode
impl UnwindSafe for ProfileCompareMode
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