pub struct ValidateReport {
pub valid: bool,
pub issues: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Report returned after a validate operation.
Fields§
§valid: bool§issues: Vec<String>§warnings: Vec<String>Trait Implementations§
Source§impl Debug for ValidateReport
impl Debug for ValidateReport
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