Skip to main content

Finding

Struct Finding 

Source
pub struct Finding {
    pub rule_id: &'static str,
    pub severity: Severity,
    pub title: String,
    pub summary: String,
    pub evidence: Vec<Evidence>,
    pub confidence: Confidence,
}
Expand description

One rule’s conclusion about the current state of the system (§11.1).

Fields§

§rule_id: &'static str

The stable identifier of the rule that produced this.

A &'static str rather than an enum so that rules can be registered without every consumer needing to be recompiled against a closed set, and so that the id can be logged and exported verbatim.

§severity: Severity

How serious this is.

§title: String

A short headline, e.g. Sustained CPU saturation.

§summary: String

One or two sentences of explanation, including the counts the rule used.

Deliberately free of byte counts: the unit family is a display setting, so byte-valued figures belong in Self::evidence where the UI can format them (§12).

§evidence: Vec<Evidence>

The raw measurements the conclusion rests on (§11.3).

§confidence: Confidence

How much the evidence actually supports the conclusion (§11.3).

Implementations§

Source§

impl Finding

Source

pub fn new( rule_id: &'static str, severity: Severity, title: impl Into<String>, summary: impl Into<String>, confidence: Confidence, ) -> Self

Builds a finding with no evidence attached yet.

Source

pub fn with_evidence(self, evidence: Vec<Evidence>) -> Self

Attaches the raw evidence §11.3 requires.

Source

pub const fn symbol(&self) -> char

The redundant non-color cue for this finding’s severity (§5.2).

Source

pub fn headline(&self) -> String

The WATCH: Sustained CPU saturation line from §11.3’s example.

Source

pub fn render_evidence(&self, units: ByteUnits) -> String

The Evidence: ... line from §11.3’s example.

Source

pub fn render_confidence(&self) -> String

The Confidence: medium. line from §11.3’s example.

Trait Implementations§

Source§

impl Clone for Finding

Source§

fn clone(&self) -> Finding

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Finding

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Finding

Source§

fn eq(&self, other: &Finding) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Finding

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.