pub struct HealthView<'a> {
pub report: &'a HealthReport,
pub root: &'a Path,
pub rules: &'a RulesConfig,
pub branching: Option<&'a BranchingByFile>,
}Expand description
The health analysis of one audit side, as the audit reads it.
Fields§
§report: &'a HealthReportHealth report with complexity and styling findings.
root: &'a PathRoot that key paths are relative to.
rules: &'a RulesConfigRules that decide whether a styling finding gates the verdict.
branching: Option<&'a BranchingByFile>Branching totals per file, when the surface computed them.
Auto Trait Implementations§
impl<'a> Freeze for HealthView<'a>
impl<'a> RefUnwindSafe for HealthView<'a>
impl<'a> Send for HealthView<'a>
impl<'a> Sync for HealthView<'a>
impl<'a> Unpin for HealthView<'a>
impl<'a> UnsafeUnpin for HealthView<'a>
impl<'a> UnwindSafe for HealthView<'a>
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> 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