pub struct Finding {
pub code: &'static str,
pub stage: &'static str,
pub locator: CorruptionLocator,
pub doc_anchor: &'static str,
pub detail: String,
}Expand description
Single doctor finding record. Stable report-shape per AC-043c. The
code and doc_anchor strings are stable dispatch keys owned by
dev/design/recovery.md § Code-to-operator-action cross-reference.
Fields§
§code: &'static str§stage: &'static str§locator: CorruptionLocator§doc_anchor: &'static str§detail: StringTrait Implementations§
impl Eq for Finding
impl StructuralPartialEq for Finding
Auto Trait Implementations§
impl Freeze for Finding
impl RefUnwindSafe for Finding
impl Send for Finding
impl Sync for Finding
impl Unpin for Finding
impl UnsafeUnpin for Finding
impl UnwindSafe for Finding
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