pub struct ReclaimStats {
pub hazard_pins: AtomicU64,
pub epoch_pins: AtomicU64,
pub objects_retired: AtomicU64,
pub objects_reclaimed: AtomicU64,
pub reclaim_cycles: AtomicU64,
}Expand description
Reclamation statistics
Fields§
§hazard_pins: AtomicU64§epoch_pins: AtomicU64§objects_retired: AtomicU64§objects_reclaimed: AtomicU64§reclaim_cycles: AtomicU64Implementations§
Source§impl ReclaimStats
impl ReclaimStats
pub fn snapshot(&self) -> ReclaimStatsSnapshot
Trait Implementations§
Source§impl Debug for ReclaimStats
impl Debug for ReclaimStats
Source§impl Default for ReclaimStats
impl Default for ReclaimStats
Source§fn default() -> ReclaimStats
fn default() -> ReclaimStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for ReclaimStats
impl RefUnwindSafe for ReclaimStats
impl Send for ReclaimStats
impl Sync for ReclaimStats
impl Unpin for ReclaimStats
impl UnwindSafe for ReclaimStats
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more