pub struct RawRwSpinlock(_);
👎Deprecated since 0.2.4: Use spin-rs instead
Expand description

Raw spinlock rwlock, wrapped in the lock_api RwLock struct.

Trait Implementations

Initial value for an unlocked RwLock.
Marker type which determines whether a lock guard should be Send. Use one of the GuardSend or GuardNoSend helper types here. Read more
Acquires a shared lock, blocking the current thread until it is able to do so.
Attempts to acquire a shared lock without blocking.
Attempts to acquire an exclusive lock without blocking.
Acquires an exclusive lock, blocking the current thread until it is able to do so.
Releases a shared lock. Read more
Releases an exclusive lock. Read more
Checks if this RwLock is currently locked in any way.
Check if this RwLock is currently exclusively locked.
Atomically downgrades an exclusive lock into a shared lock without allowing any thread to take an exclusive lock in the meantime. Read more
Acquires an upgradable lock, blocking the current thread until it is able to do so.
Attempts to acquire an upgradable lock without blocking.
Attempts to upgrade an upgradable lock to an exclusive lock without blocking. Read more
Upgrades an upgradable lock to an exclusive lock. Read more
Releases an upgradable lock. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.