1use crate::records::parse_error::ParseError; 2use crate::records::parse_errors::ParseErrors; 3 4impl ParseErrors { 5 pub fn get_errors(&self) -> &Vec<ParseError> { 6 &self.errors 7 } 8}