pub type Checked = Result<Vec<Violation>, String>;
What a check produced, in the only shape the server needs.
pub enum Checked { Ok(Vec<Violation>), Err(String), }
Contains the success value
Contains the error value