Struct parking_lot_core::SpinWait [−][src]
A counter used to perform exponential backoff in spin loops.
Implementations
impl SpinWait
[src]
pub fn new() -> Self
[src]
Creates a new SpinWait
.
pub fn reset(&mut self)
[src]
Resets a SpinWait
to its initial state.
pub fn spin(&mut self) -> bool
[src]
Spins until the sleep threshold has been reached.
This function returns whether the sleep threshold has been reached, at which point further spinning has diminishing returns and the thread should be parked instead.
The spin strategy will initially use a CPU-bound loop but will fall back to yielding the CPU to the OS after a few iterations.
pub fn spin_no_yield(&mut self)
[src]
Spins without yielding the thread to the OS.
Instead, the backoff is simply capped at a maximum value. This can be
used to improve throughput in compare_exchange
loops that have high
contention.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SpinWait
impl Send for SpinWait
impl Sync for SpinWait
impl Unpin for SpinWait
impl UnwindSafe for SpinWait
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,