pub struct Emit {
pub files: Vec<EmittedFile>,
pub sources: usize,
pub records: usize,
}Expand description
A computed whole-store dump: every emitted file plus the per-layer tally.
Fields§
§files: Vec<EmittedFile>Every emitted file (content files + DB.md), sorted by path.
sources: usizeHow many emitted files live in sources/.
records: usizeHow many emitted files live in records/.
Trait Implementations§
impl StructuralPartialEq for Emit
Auto Trait Implementations§
impl Freeze for Emit
impl RefUnwindSafe for Emit
impl Send for Emit
impl Sync for Emit
impl Unpin for Emit
impl UnsafeUnpin for Emit
impl UnwindSafe for Emit
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