pub struct Problems {
pub errors: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Collected fatal errors and non-fatal warnings from a normalization pass.
Fields§
§errors: Vec<String>Fatal validation errors; a non-empty list means the config would not normalize (the CLI exits non-zero with the §10 error envelope).
warnings: Vec<String>Non-fatal notes (aspirational draft producers, the unknown-field report).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Problems
impl RefUnwindSafe for Problems
impl Send for Problems
impl Sync for Problems
impl Unpin for Problems
impl UnsafeUnpin for Problems
impl UnwindSafe for Problems
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