pub struct ValidateReport {
pub valid: bool,
pub missing_sections: Vec<String>,
pub outdated_sections: Vec<String>,
}Expand description
Report from validate command
Fields§
§valid: bool§missing_sections: Vec<String>§outdated_sections: Vec<String>Auto Trait Implementations§
impl Freeze for ValidateReport
impl RefUnwindSafe for ValidateReport
impl Send for ValidateReport
impl Sync for ValidateReport
impl Unpin for ValidateReport
impl UnsafeUnpin for ValidateReport
impl UnwindSafe for ValidateReport
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