pub struct StationLoadSamplerScratch { /* private fields */ }Expand description
Caller-owned reusable storage for periodic station load sampling.
Implementations§
Source§impl StationLoadSamplerScratch
impl StationLoadSamplerScratch
Sourcepub fn retained_subscriber_capacity(&self) -> usize
pub fn retained_subscriber_capacity(&self) -> usize
Hash-table capacity retained for subscriber aggregation.
Sourcepub fn retained_occupancy_capacity(&self) -> usize
pub fn retained_occupancy_capacity(&self) -> usize
Temporary occupancy capacity retained across station scans.
Sourcepub fn retained_sample_slots(&self) -> usize
pub fn retained_sample_slots(&self) -> usize
Station output slots retained across sampling passes.
Sourcepub fn retained_cell_capacity(&self) -> usize
pub fn retained_cell_capacity(&self) -> usize
Total cell output capacity retained across station slots.
Trait Implementations§
Source§impl Clone for StationLoadSamplerScratch
impl Clone for StationLoadSamplerScratch
Source§fn clone(&self) -> StationLoadSamplerScratch
fn clone(&self) -> StationLoadSamplerScratch
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 StationLoadSamplerScratch
impl Debug for StationLoadSamplerScratch
Source§impl Default for StationLoadSamplerScratch
impl Default for StationLoadSamplerScratch
Source§fn default() -> StationLoadSamplerScratch
fn default() -> StationLoadSamplerScratch
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StationLoadSamplerScratch
impl RefUnwindSafe for StationLoadSamplerScratch
impl Send for StationLoadSamplerScratch
impl Sync for StationLoadSamplerScratch
impl Unpin for StationLoadSamplerScratch
impl UnsafeUnpin for StationLoadSamplerScratch
impl UnwindSafe for StationLoadSamplerScratch
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