Skip to main content

DoctorCheck

Trait DoctorCheck 

Source
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§

Source

fn name(&self) -> &'static str

Source

fn run(&self, root: &Path) -> CheckResult

Provided Methods§

Source

fn category(&self) -> CheckCategory

Filter bucket for ferro doctor --deploy and MCP deploy_check (Phase 128 D-02). Defaults to General.

Implementors§