pub struct VersionReport {
pub total_packages: usize,
pub drift_detected: bool,
pub issues: Vec<String>,
pub inconsistencies: Vec<VersionInconsistency>,
}Expand description
Report of version consistency check.
Fields§
§total_packages: usize§drift_detected: bool§issues: Vec<String>§inconsistencies: Vec<VersionInconsistency>Implementations§
Source§impl VersionReport
impl VersionReport
pub fn has_issues(&self) -> bool
Trait Implementations§
Source§impl Debug for VersionReport
impl Debug for VersionReport
Source§impl Default for VersionReport
impl Default for VersionReport
Source§fn default() -> VersionReport
fn default() -> VersionReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VersionReport
impl RefUnwindSafe for VersionReport
impl Send for VersionReport
impl Sync for VersionReport
impl Unpin for VersionReport
impl UnwindSafe for VersionReport
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