pub struct Report {
pub metadata: Metadata,
pub messages: Vec<Message>,
pub invocations: Vec<Invocation>,
pub issues: Vec<Issue>,
pub stats: Vec<Stats>,
}Fields§
§metadata: Metadata§messages: Vec<Message>§invocations: Vec<Invocation>§issues: Vec<Issue>§stats: Vec<Stats>Implementations§
Source§impl Report
impl Report
pub fn merge(&mut self, other: &Report)
pub fn transform_issues(&mut self, transformer: Box<dyn IssueTransformer>)
pub fn relativeize_paths(&mut self, base_path: &Path)
pub fn attach_metadata(&mut self)
pub fn duplication_issues_by_duplication(&self) -> HashMap<String, Vec<Issue>>
pub fn function_stats_by_path(&self) -> HashMap<PathBuf, Vec<Stats>>
pub fn file_stats(&self) -> Vec<Stats>
pub fn directory_stats(&self) -> Vec<Stats>
pub fn finish(&mut self)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnwindSafe for Report
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<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