pub struct Report {
pub releases: Vec<String>,
pub records: Vec<Record>,
pub bytes_in: u64,
pub bytes_newest: u64,
pub bytes_out: u64,
pub problems: Vec<String>,
}Expand description
What a merge of a whole tree did.
Fields§
§releases: Vec<String>How the releases are spelled, for the first line of the report.
records: Vec<Record>One entry per file in the merged tree.
bytes_in: u64What the installs weigh, added up.
bytes_newest: u64What the newest install weighs on its own, which is the honest thing to compare against: shipping one release is the alternative to merging.
bytes_out: u64What the merged tree weighs.
problems: Vec<String>Everything that is wrong, which has to be empty for the tree to be worth shipping.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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