pub struct AtomicInstant { /* private fields */ }
Expand description

A coarse::AtomicInstant is a measurement of a monotonically nondecreasing clock. It is opaque and useful only with the duration types.

Internally, it reprsents the instant as a whole number of seconds from an arbitrary epoch using an AtomicU32. This provides interior mutability with atomic operations.

See the crate::coarse::Instant type for more details.

Implementations§

source§

impl AtomicInstant

source

pub fn new(value: Instant) -> Self

Create a new AtomicInstant representing the provided Instant.

source

pub fn now() -> Self

Create a new AtomicInstant representing the current instant.

source

pub fn load(&self, ordering: Ordering) -> Instant

See: core::sync::atomic::AtomicU32::load for a description of the memory orderings.

§Panics

Panics if ordering is Release or AcqRel.

source

pub fn store(&self, value: Instant, ordering: Ordering)

Stores a new value for the instant.

See: core::sync::atomic::AtomicU32::store for a description of the memory orderings.

§Panics

Panics if ordering is Acquire or AcqRel.

source

pub fn swap(&self, value: Instant, ordering: Ordering) -> Instant

Replaces the value of the instant and returns the previous value.

See: core::sync::atomic::AtomicU32::swap for a description of the memory orderings.

Note: This method is only available on platforms that support atomic operations on u32.

source

pub fn compare_exchange( &self, current: Instant, new: Instant, success: Ordering, failure: Ordering ) -> Result<Instant, Instant>

Stores a new value for the instant if the current instant is the same as the current instant.

See: core::sync::atomic::AtomicU32::compare_exchange for a description of the memory orderings.

Note: This method is only available on platforms that support atomic operations on u32.

source

pub fn compare_exchange_weak( &self, current: Instant, new: Instant, success: Ordering, failure: Ordering ) -> Result<Instant, Instant>

Stores a new value for the instant if the current instant is the same as the current instant.

See: core::sync::atomic::AtomicU32::compare_exchange_weak for a description of the memory orderings.

Unlike AtomicDuration::compare_exchange, this function is allowed to spuriously fail. This allows for more efficient code on some platforms.

Note: This method is only available on platforms that support atomic operations on u32.

source

pub fn fetch_add(&self, value: Duration, ordering: Ordering) -> Instant

Adds to the current instant, returning the previous instant.

This operation wraps around on overflow.

See: core::sync::atomic::AtomicU32::fetch_add for a description of the memory orderings.

Note: This method is only available on platforms that support atomic operations on u32.

source

pub fn fetch_max(&self, value: Instant, ordering: Ordering) -> Instant

Maximum with the current instant.

Finds the maximum of the current instant and the argument value, and sets the new instant to the result.

Returns the previous instant.

See: core::sync::atomic::AtomicU32::fetch_max for a description of the memory orderings.

Note: This method is only available on platforms that support atomic operations on u32.

source

pub fn fetch_min(&self, value: Instant, ordering: Ordering) -> Instant

Minimum with the current instant.

Finds the minimum of the current instant and the argument val, and sets the new instant to the result.

Returns the previous instant.

See: core::sync::atomic::AtomicU32::fetch_min for a description of the memory orderings.

Note: This method is only available on platforms that support atomic operations on u32.

source

pub fn fetch_sub(&self, value: Duration, ordering: Ordering) -> Instant

Subtracts from the current instant, returning the previous instant.

This operation wraps around on overflow.

See: core::sync::atomic::AtomicU32::fetch_sub for a description of the memory orderings.

Note: This method is only available on platforms that support atomic operations on u32.

Trait Implementations§

source§

impl Debug for AtomicInstant

source§

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

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

impl Default for AtomicInstant

source§

fn default() -> AtomicInstant

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

impl From<Instant> for AtomicInstant

source§

fn from(other: Instant) -> Self

Converts to this type from the input type.
source§

impl TryFrom<Instant> for AtomicInstant

§

type Error = TryFromError

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

fn try_from(other: Instant) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

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, 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.