pub struct ValidationReport {
pub accounts_ok: usize,
pub warnings: Vec<String>,
pub insecure_paths: Vec<PathBuf>,
pub unused: Vec<String>,
pub errors: Vec<BuildError>,
}Expand description
Outcome of a per-store validation pass. Warnings are advisory; errors fail boot once collected across all stores.
Fields§
§accounts_ok: usize§warnings: Vec<String>§insecure_paths: Vec<PathBuf>§unused: Vec<String>§errors: Vec<BuildError>Implementations§
Trait Implementations§
Source§impl Debug for ValidationReport
impl Debug for ValidationReport
Source§impl Default for ValidationReport
impl Default for ValidationReport
Source§fn default() -> ValidationReport
fn default() -> ValidationReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ValidationReport
impl !RefUnwindSafe for ValidationReport
impl Send for ValidationReport
impl Sync for ValidationReport
impl Unpin for ValidationReport
impl UnsafeUnpin for ValidationReport
impl !UnwindSafe for ValidationReport
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