pub struct ReconcileReport {
pub updated: usize,
pub unchanged: usize,
pub orphan_scopes_cleared: Vec<String>,
pub mode: String,
}Expand description
Report from reconcile_scopes.
Fields§
§updated: usizeNodes whose scope column changed.
unchanged: usizeNodes already correct.
orphan_scopes_cleared: Vec<String>Scope labels present in DB but not in manifest (reassigned to main when multi, or all → main when single).
mode: StringManifest mode after reconcile.
Trait Implementations§
Source§impl Clone for ReconcileReport
impl Clone for ReconcileReport
Source§fn clone(&self) -> ReconcileReport
fn clone(&self) -> ReconcileReport
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 ReconcileReport
impl Debug for ReconcileReport
Auto Trait Implementations§
impl Freeze for ReconcileReport
impl RefUnwindSafe for ReconcileReport
impl Send for ReconcileReport
impl Sync for ReconcileReport
impl Unpin for ReconcileReport
impl UnsafeUnpin for ReconcileReport
impl UnwindSafe for ReconcileReport
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