pub struct ContestErrs {
pub contest_errs: Vec<MapmErr>,
pub problem_errs: Vec<ProblemErrs>,
}
Fields§
§contest_errs: Vec<MapmErr>
Any error having to do with the contest itself, whether it is not being able to find the contest, a parsing error, or an inconsistency between the contest and the template (e.g. the template requires a variable which the contest does not have)
problem_errs: Vec<ProblemErrs>
The String represents the name of the problem with an error.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ContestErrs
impl RefUnwindSafe for ContestErrs
impl Send for ContestErrs
impl Sync for ContestErrs
impl Unpin for ContestErrs
impl UnwindSafe for ContestErrs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more