pub enum AtomicOpCode {
Load,
Store,
Swap,
Add,
Sub,
Max,
Min,
And,
Or,
Xor,
CompareAndSwap,
}
Variants§
Trait Implementations§
Source§impl Clone for AtomicOpCode
impl Clone for AtomicOpCode
Source§fn clone(&self) -> AtomicOpCode
fn clone(&self) -> AtomicOpCode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AtomicOpCode
impl Debug for AtomicOpCode
Source§impl Hash for AtomicOpCode
impl Hash for AtomicOpCode
Source§impl Ord for AtomicOpCode
impl Ord for AtomicOpCode
Source§fn cmp(&self, other: &AtomicOpCode) -> Ordering
fn cmp(&self, other: &AtomicOpCode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AtomicOpCode
impl PartialEq for AtomicOpCode
Source§impl PartialOrd for AtomicOpCode
impl PartialOrd for AtomicOpCode
Source§impl TypeHash for AtomicOpCode
impl TypeHash for AtomicOpCode
impl Copy for AtomicOpCode
impl Eq for AtomicOpCode
impl StructuralPartialEq for AtomicOpCode
Auto Trait Implementations§
impl Freeze for AtomicOpCode
impl RefUnwindSafe for AtomicOpCode
impl Send for AtomicOpCode
impl Sync for AtomicOpCode
impl Unpin for AtomicOpCode
impl UnwindSafe for AtomicOpCode
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.