pub struct ReplicationStats {
pub candidates: usize,
pub considered: usize,
pub selected: usize,
pub skipped_by_budget: usize,
pub unexamined_after_budget: usize,
pub skipped_by_cadence: usize,
pub estimated_bytes: usize,
}Expand description
Replication planner statistics.
Fields§
§candidates: usizeCandidate handles returned from the spatial index.
considered: usizeCandidate records considered after stale handle filtering.
selected: usizeSelected entities.
skipped_by_budget: usizeEntities skipped because the budget was exhausted.
unexamined_after_budget: usizeSpatial candidates not examined after a work-bounded budget filled.
skipped_by_cadence: usizeEntities skipped because their cadence interval has not elapsed.
estimated_bytes: usizeEstimated frame bytes.
Trait Implementations§
Source§impl Clone for ReplicationStats
impl Clone for ReplicationStats
Source§fn clone(&self) -> ReplicationStats
fn clone(&self) -> ReplicationStats
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 moreimpl Copy for ReplicationStats
Source§impl Debug for ReplicationStats
impl Debug for ReplicationStats
Source§impl Default for ReplicationStats
impl Default for ReplicationStats
Source§fn default() -> ReplicationStats
fn default() -> ReplicationStats
Returns the “default value” for a type. Read more
impl Eq for ReplicationStats
Source§impl PartialEq for ReplicationStats
impl PartialEq for ReplicationStats
impl StructuralPartialEq for ReplicationStats
Auto Trait Implementations§
impl Freeze for ReplicationStats
impl RefUnwindSafe for ReplicationStats
impl Send for ReplicationStats
impl Sync for ReplicationStats
impl Unpin for ReplicationStats
impl UnsafeUnpin for ReplicationStats
impl UnwindSafe for ReplicationStats
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