Struct spin_sleep::SpinSleeper
[−]
[src]
pub struct SpinSleeper { /* fields omitted */ }
Accuracy container for spin sleeping
Methods
impl SpinSleeper
[src]
fn new(native_accuracy_ns: u32) -> SpinSleeper
Constructs new SpinSleeper with the input native sleep accuracy
The lower the native_accuracy_ns
the more we effectively trust the accuracy of the
thread::sleep
function
fn native_accuracy_ns(&self) -> u32
Returns configured native_accuracy_ns
fn sleep(&self, duration: Duration)
Puts the current thread to sleep and then/or spins until the specified duration has elapsed.
fn sleep_s(&self, seconds: f64)
Puts the current thread to sleep and then/or spins until the specified second duration has elapsed.
fn sleep_ns(&self, nanoseconds: u64)
Puts the current thread to sleep and then/or spins until the specified nanosecond duration has elapsed.
Trait Implementations
impl Debug for SpinSleeper
[src]
impl Clone for SpinSleeper
[src]
fn clone(&self) -> SpinSleeper
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Copy for SpinSleeper
[src]
impl PartialEq for SpinSleeper
[src]
fn eq(&self, __arg_0: &SpinSleeper) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &SpinSleeper) -> bool
This method tests for !=
.