Appends a list of [`PathValidationError`]s to `self.errors`.
(&mut self, other: &mut Vec<PathValidationError>)
| 36 | |
| 37 | /// Appends a list of [`PathValidationError`]s to `self.errors`. |
| 38 | pub fn append(&mut self, other: &mut Vec<PathValidationError>) { |
| 39 | self.errors.append(other); |
| 40 | } |
| 41 | |
| 42 | /// Checks if errors have been appended and consumes `self`. |
| 43 | /// |
no outgoing calls
no test coverage detected