pub struct Counter<T, Behavior = ()>(/* private fields */);
Expand description

A checked-overflow counter

Rather than silently wrapping, we want to ensure counting errors stay somewhat isolated so the counter will saturate rather than wrap. The counter operates in 3 modes:

  • If debug_assertions are enabled, the counter will panic on overflow
  • If the checked-counters feature flag is defined, the counter will panic on overflow, even in release builds.
  • Otherwise, the counter will saturate

The counter can also be configured to always saturate by passing the Saturating behavior:

use s2n_quic_core::counter::{Counter, Saturating};

let counter: Counter<u32, Saturating> = Default::default();

Implementations§

source§

impl<T, Behavior> Counter<T, Behavior>

source

pub const fn new(value: T) -> Self

Creates a new counter with an initial value

source

pub fn set(&mut self, value: T)

source

pub fn try_add<V>(&mut self, value: V) -> Result<(), T::Error>
where T: TryFrom<V>, Self: AddAssign<T>,

Tries to convert V to T and add it to the current counter value

source

pub fn try_sub<V>(&mut self, value: V) -> Result<(), T::Error>
where T: TryFrom<V>, Self: SubAssign<T>,

Tries to convert V to T and subtract it from the current counter value

Trait Implementations§

source§

impl<T, R> AddAssign<R> for Counter<T, ()>

source§

fn add_assign(&mut self, rhs: R)

Performs the += operation. Read more
source§

impl<T, R> AddAssign<R> for Counter<T, Saturating>
where T: SaturatingAddAssign<R>,

source§

fn add_assign(&mut self, rhs: R)

Performs the += operation. Read more
source§

impl<T: Clone, Behavior: Clone> Clone for Counter<T, Behavior>

source§

fn clone(&self) -> Counter<T, Behavior>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug, Behavior: Debug> Debug for Counter<T, Behavior>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Default, Behavior: Default> Default for Counter<T, Behavior>

source§

fn default() -> Counter<T, Behavior>

Returns the “default value” for a type. Read more
source§

impl<T, B> Deref for Counter<T, B>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T: Hash, Behavior: Hash> Hash for Counter<T, Behavior>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<T, R> MulAssign<R> for Counter<T, ()>

source§

fn mul_assign(&mut self, rhs: R)

Performs the *= operation. Read more
source§

impl<T, R> MulAssign<R> for Counter<T, Saturating>
where T: SaturatingMulAssign<R>,

source§

fn mul_assign(&mut self, rhs: R)

Performs the *= operation. Read more
source§

impl<T, B> Ord for Counter<T, B>
where T: Ord,

source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<T, B, R> PartialEq<R> for Counter<T, B>
where Self: PartialOrd<R>,

source§

fn eq(&self, other: &R) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T, B> PartialOrd<T> for Counter<T, B>
where T: PartialOrd<T>,

source§

fn partial_cmp(&self, other: &T) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<T, B> PartialOrd for Counter<T, B>
where T: PartialOrd<T>,

source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<T, R> SubAssign<R> for Counter<T, ()>

source§

fn sub_assign(&mut self, rhs: R)

Performs the -= operation. Read more
source§

impl<T, R> SubAssign<R> for Counter<T, Saturating>
where T: SaturatingSubAssign<R>,

source§

fn sub_assign(&mut self, rhs: R)

Performs the -= operation. Read more
source§

impl<T, B> UpcastFrom<&Counter<T, B>> for T
where T: for<'a> UpcastFrom<&'a T>,

source§

fn upcast_from(value: &Counter<T, B>) -> Self

source§

impl<T: Copy, Behavior: Copy> Copy for Counter<T, Behavior>

source§

impl<T, B> Eq for Counter<T, B>
where Self: Ord,

Auto Trait Implementations§

§

impl<T, Behavior> Freeze for Counter<T, Behavior>
where T: Freeze,

§

impl<T, Behavior> RefUnwindSafe for Counter<T, Behavior>
where Behavior: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, Behavior> Send for Counter<T, Behavior>
where Behavior: Send, T: Send,

§

impl<T, Behavior> Sync for Counter<T, Behavior>
where Behavior: Sync, T: Sync,

§

impl<T, Behavior> Unpin for Counter<T, Behavior>
where Behavior: Unpin, T: Unpin,

§

impl<T, Behavior> UnwindSafe for Counter<T, Behavior>
where Behavior: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T, U> Upcast<T> for U
where T: UpcastFrom<U>,

source§

fn upcast(self) -> T

source§

impl<T, B> UpcastFrom<Counter<T, B>> for T

source§

fn upcast_from(value: Counter<T, B>) -> T