pub struct Report {
pub records: u64,
pub head: Option<String>,
pub bundles: usize,
pub refs: usize,
pub ahead: usize,
}Expand description
What an export holds, counted from the files rather than claimed.
Fields§
§records: u64Op-log records the export carries.
head: Option<String>The log’s head hash as hex, or None for an empty log.
bundles: usizeRepositories the export carries a bundle for.
refs: usizeRefs the log names that a bundle carries at the same oid.
ahead: usizeRefs a bundle carries that the log does not name.
Benign by itself — see the module docs on why the check runs in one direction — and reported so that drift is visible.
Trait Implementations§
impl Eq for Report
impl StructuralPartialEq for Report
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