Struct raii_counter::Counter[][src]

pub struct Counter { /* fields omitted */ }

Essentially an AtomicUsize that is clonable and whose count is based on the number of copies (and their size). The count is automatically updated on Drop.

If you want a weak reference to the counter that doesn’t affect the count, see: WeakCounter.

Implementations

impl Counter[src]

pub fn builder() -> CounterBuilder[src]

Create a new default CounterBuilder.

pub fn downgrade(self) -> WeakCounter[src]

Consume self (causing the count to decrease by size) and return a weak reference to the count through a WeakCounter.

pub fn spawn_downgrade(&self) -> WeakCounter[src]

Create a new WeakCounter without consuming self.

pub fn count(&self) -> usize[src]

This method is inherently racey. Assume the count will have changed once the value is observed.

Trait Implementations

impl Clone for Counter[src]

impl Debug for Counter[src]

impl Display for Counter[src]

impl Drop for Counter[src]

Auto Trait Implementations

impl !RefUnwindSafe for Counter

impl Send for Counter

impl !Sync for Counter

impl Unpin for Counter

impl !UnwindSafe for Counter

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.