// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/// One diagnosis.
#[derive(Debug, Clone, PartialEq, Eq)]pubstructFinding{/// A stable identifier, so a finding can be referred to, suppressed or searched for.
pubcode:&'staticstr,
/// The measured symptom, in one line.
pubheadline: String,
/// Supporting measurements, one per line.
pubdetail:Vec<String>,
/// What to do about it.
pubremedy: String,
/// What taking the remedy costs in signal. Never omitted, never softened.
pubcost: String,
}