#[non_exhaustive]pub enum HasAtomic {
IntegerSize(u16),
Pointer,
}
Expand description
Integer size and pointers for which there’s support for atomic functions.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
IntegerSize(u16)
The platform supports atomics for the given integer size in bits (e.g. AtomicU8
if
HasAtomic::IntegerSize(8)
).
Pointer
The platform supports atomics for pointers (AtomicPtr
).
Trait Implementations§
Source§impl Ord for HasAtomic
impl Ord for HasAtomic
Source§impl PartialOrd for HasAtomic
impl PartialOrd for HasAtomic
impl Copy for HasAtomic
impl Eq for HasAtomic
impl StructuralPartialEq for HasAtomic
Auto Trait Implementations§
impl Freeze for HasAtomic
impl RefUnwindSafe for HasAtomic
impl Send for HasAtomic
impl Sync for HasAtomic
impl Unpin for HasAtomic
impl UnwindSafe for HasAtomic
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