pub struct ReplicationScratch { /* private fields */ }Expand description
Reusable scratch storage for allocation-aware replication planning.
Implementations§
Source§impl ReplicationScratch
impl ReplicationScratch
Sourcepub fn candidate_count(&self) -> usize
pub fn candidate_count(&self) -> usize
Number of spatial candidates retained from the last query.
Sourcepub fn prioritized_capacity(&self) -> usize
pub fn prioritized_capacity(&self) -> usize
Capacity retained for priority candidate sorting.
Sourcepub const fn query_stats(&self) -> CellQueryStats
pub const fn query_stats(&self) -> CellQueryStats
Work counters from the last spatial candidate query.
Sourcepub fn candidate_capacity(&self) -> usize
pub fn candidate_capacity(&self) -> usize
Capacity retained for spatial candidate handles.
Sourcepub fn candidate_dedup_capacity(&self) -> usize
pub fn candidate_dedup_capacity(&self) -> usize
Capacity retained by spatial candidate deduplication.
Sourcepub fn matching_cell_capacity(&self) -> usize
pub fn matching_cell_capacity(&self) -> usize
Capacity retained for cells matched by sparse spatial queries.
Trait Implementations§
Source§impl Clone for ReplicationScratch
impl Clone for ReplicationScratch
Source§fn clone(&self) -> ReplicationScratch
fn clone(&self) -> ReplicationScratch
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 ReplicationScratch
impl Debug for ReplicationScratch
Source§impl Default for ReplicationScratch
impl Default for ReplicationScratch
Source§fn default() -> ReplicationScratch
fn default() -> ReplicationScratch
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReplicationScratch
impl RefUnwindSafe for ReplicationScratch
impl Send for ReplicationScratch
impl Sync for ReplicationScratch
impl Unpin for ReplicationScratch
impl UnsafeUnpin for ReplicationScratch
impl UnwindSafe for ReplicationScratch
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