pub trait DoctorCheck {
// Required methods
fn name(&self) -> &'static str;
fn run(&self, root: &Path) -> CheckResult;
// Provided method
fn category(&self) -> CheckCategory { ... }
}Expand description
Trait every concrete check implements.
Required Methods§
Provided Methods§
Sourcefn category(&self) -> CheckCategory
fn category(&self) -> CheckCategory
Filter bucket for ferro doctor --deploy and MCP deploy_check
(Phase 128 D-02). Defaults to General.