pub struct ReconcileContext {
pub generation: u64,
pub reconciled: usize,
pub skipped: usize,
pub created: usize,
pub removed: usize,
}Expand description
Context for a reconciliation pass.
Fields§
§generation: u64Current generation.
reconciled: usizeCount of nodes that were reconciled (updated).
skipped: usizeCount of nodes that were skipped (unchanged).
created: usizeCount of nodes that were created.
removed: usizeCount of nodes that were removed.
Implementations§
Auto Trait Implementations§
impl Freeze for ReconcileContext
impl RefUnwindSafe for ReconcileContext
impl Send for ReconcileContext
impl Sync for ReconcileContext
impl Unpin for ReconcileContext
impl UnsafeUnpin for ReconcileContext
impl UnwindSafe for ReconcileContext
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