pub struct DeltaReport {
pub fingerprint_version: u8,
pub base_diagnostics: usize,
pub current_diagnostics: usize,
pub introduced: Vec<String>,
pub pre_existing: Vec<DeltaMatch>,
pub fixed: Vec<Diagnostic>,
pub summary: DeltaSummary,
}Fields§
§fingerprint_version: u8§base_diagnostics: usize§current_diagnostics: usize§introduced: Vec<String>§pre_existing: Vec<DeltaMatch>§fixed: Vec<Diagnostic>§summary: DeltaSummaryTrait Implementations§
Source§impl Clone for DeltaReport
impl Clone for DeltaReport
Source§fn clone(&self) -> DeltaReport
fn clone(&self) -> DeltaReport
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 moreSource§impl Debug for DeltaReport
impl Debug for DeltaReport
impl Eq for DeltaReport
Source§impl PartialEq for DeltaReport
impl PartialEq for DeltaReport
Source§impl Serialize for DeltaReport
impl Serialize for DeltaReport
impl StructuralPartialEq for DeltaReport
Auto Trait Implementations§
impl Freeze for DeltaReport
impl RefUnwindSafe for DeltaReport
impl Send for DeltaReport
impl Sync for DeltaReport
impl Unpin for DeltaReport
impl UnsafeUnpin for DeltaReport
impl UnwindSafe for DeltaReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more