[][src]Struct spinning_top::RawSpinlock

pub struct RawSpinlock { /* fields omitted */ }

Provides mutual exclusion based on spinning on an AtomicBool.

It's recommended to use this type either combination with lock_api::Mutex or through the Spinlock type.

Example

use lock_api::RawMutex;
let lock = spinning_top::RawSpinlock::INIT;
assert_eq!(lock.try_lock(), true); // lock it
assert_eq!(lock.try_lock(), false); // can't be locked a second time
lock.unlock(); // unlock it
assert_eq!(lock.try_lock(), true); // now it can be locked again

Trait Implementations

impl Debug for RawSpinlock[src]

impl RawMutex for RawSpinlock[src]

type GuardMarker = GuardSend

Marker type which determines whether a lock guard should be Send. Use one of the GuardSend or GuardNoSend helper types here. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.