pub struct SeedReport {
pub rev: String,
pub files: usize,
pub changed: bool,
pub missing_paths: Vec<Utf8PathBuf>,
}Fields§
§rev: String§files: usize§changed: boolFalse when the lane head already pointed at this content.
missing_paths: Vec<Utf8PathBuf>Declared paths with nothing on disk in the store repo. Reported rather
than silently skipped: a lane seeded from half its paths is a bug you
want to hear about now, not at the first spawn.
Trait Implementations§
Source§impl Clone for SeedReport
impl Clone for SeedReport
Source§fn clone(&self) -> SeedReport
fn clone(&self) -> SeedReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SeedReport
impl Debug for SeedReport
impl Eq for SeedReport
Source§impl PartialEq for SeedReport
impl PartialEq for SeedReport
impl StructuralPartialEq for SeedReport
Auto Trait Implementations§
impl Freeze for SeedReport
impl RefUnwindSafe for SeedReport
impl Send for SeedReport
impl Sync for SeedReport
impl Unpin for SeedReport
impl UnsafeUnpin for SeedReport
impl UnwindSafe for SeedReport
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