pub trait AtomicOrd<T = <Self as Atomic>::Primitive>: Atomic + AtomicMin<T> + AtomicMax<T> { }
Expand description

A marker trait representing atomic types that support ordering operations.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, U> AtomicOrd<T> for U
where U: Atomic + AtomicMin<T> + AtomicMax<T>,