pub(crate) struct ParityReport {
pub(crate) profile: String,
pub(crate) ok: bool,
pub(crate) overview: Overview,
pub(crate) indexed_text_files: usize,
pub(crate) indexed_text_bytes: usize,
pub(crate) symbols: usize,
pub(crate) relations: usize,
pub(crate) health_findings: usize,
pub(crate) token_calls: usize,
pub(crate) watcher_mode: String,
pub(crate) checks: Vec<ParityCheck>,
}Expand description
Repository-intelligence parity report.
Fields§
§profile: StringEvaluated parity profile.
ok: boolWhether every required check passed.
overview: OverviewCurrent repository overview.
indexed_text_files: usizeFiles with persisted UTF-8 search text.
indexed_text_bytes: usizeUTF-8 source bytes available through SQLite-backed search.
symbols: usizePersisted symbols.
relations: usizePersisted symbol relations.
health_findings: usizeCurrent unresolved health finding count.
token_calls: usizeToken telemetry events counted for the active/default report.
watcher_mode: StringRuntime watcher mode detected in this process.
checks: Vec<ParityCheck>Required parity checks.
Trait Implementations§
Source§impl Debug for ParityReport
impl Debug for ParityReport
Auto Trait Implementations§
impl Freeze for ParityReport
impl RefUnwindSafe for ParityReport
impl Send for ParityReport
impl Sync for ParityReport
impl Unpin for ParityReport
impl UnwindSafe for ParityReport
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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