pub struct AtomicIter {
running: AtomicBool,
index: AtomicU32,
step: u32,
}
Expand description
Shares monotonically increasing value between multiple threads.
Fields§
§running: AtomicBool
§index: AtomicU32
§step: u32
Implementations§
Auto Trait Implementations§
impl !Freeze for AtomicIter
impl RefUnwindSafe for AtomicIter
impl Send for AtomicIter
impl Sync for AtomicIter
impl Unpin for AtomicIter
impl UnwindSafe for AtomicIter
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