use std::fmt;
pub struct Errors {
pub messages: Vec<String>,
pub nb_errors: usize,
}
impl Errors {
pub fn has_errors(&self) -> bool {
self.nb_errors > 0
}
}
impl fmt::Display for Errors {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(&self.messages.join("\n"))
}
}