pub struct AtomicU64 {
value: UnsafeCell<u64>,
}Expand description
An atomic u64 implemented by disabling interrupts around each operation.
Fields§
§value: UnsafeCell<u64>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for AtomicU64
impl !RefUnwindSafe for AtomicU64
impl Send for AtomicU64
impl Unpin for AtomicU64
impl UnwindSafe for AtomicU64
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