pub struct GapReport {
pub gaps: Vec<Gap>,
pub summary: GapSummary,
}Expand description
Full report from gap detection.
Fields§
§gaps: Vec<Gap>The detected gaps, sorted according to the params.
summary: GapSummarySummary statistics.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GapReport
impl RefUnwindSafe for GapReport
impl Send for GapReport
impl Sync for GapReport
impl Unpin for GapReport
impl UnsafeUnpin for GapReport
impl UnwindSafe for GapReport
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