RwLock

Struct RwLock 

Source
pub struct RwLock<T>
where T: ?Sized + Send,
{ state: AtomicUsize, owner: SpinLock<Option<(u64, &'static Location<'static>)>>, data: UnsafeCell<T>, }
Expand description

A reader-writer lock

This type of lock allows a number of readers or at most one writer at any point in time. The write portion of this lock typically allows modification of the underlying data (exclusive access) and the read portion of this lock typically allows for read-only access (shared access).

In comparison, a Mutex does not distinguish between readers or writers that acquire the lock, therefore blocking any threads waiting for the lock to become available. An RwLock will allow any number of readers to acquire the lock as long as a writer is not holding the lock.

The priority policy of the lock is dependent on the underlying operating system’s implementation, and this type does not guarantee that any particular policy will be used.

The type parameter T represents the data that this lock protects. It is required that T satisfies [Send] to be shared across threads and [Sync] to allow concurrent access through readers. The RAII guards returned from the locking methods implement [Deref] (and [DerefMut] for the write methods) to allow access to the content of the lock.

Fields§

§state: AtomicUsize§owner: SpinLock<Option<(u64, &'static Location<'static>)>>§data: UnsafeCell<T>

Implementations§

Source§

impl<T> RwLock<T>
where T: Send,

Source

pub const fn new(data: T) -> RwLock<T>

Creates a new instance of an RwLock<T> which is unlocked.

Source

fn validate_state( &self, owner: SpinLockGuard<'_, Option<(u64, &'static Location<'static>)>>, )

Source

fn read_lock(&self)

Source

pub fn read(&self) -> RwLockReadGuard<'_, T>

Locks this rwlock with shared read access, blocking the current thread until it can be acquired.

The call ing thread will be blocked until there are no more writers which hold the lock. There may be other readers currently inside the lock when this method returns. This method does not provide any guarantees with respect to the ordering of whether contentious readers or writers will acquire the lock first.

Returns an RAII guard which will release this thread’s shared access once it is dropped.

Source

pub fn try_read(&self) -> Result<RwLockReadGuard<'_, T>, WouldBlock>

Attempts to acquire this rwlock with shared read access.

If the access could not be granted at this time, then Err is returned. Otherwise, an RAII guard is returned which will release the shared access when it is dropped.

This function does not block.

This function does not provide any guarantees with respect to the ordering of whether contentious readers or writers will acquire the lock first.

Source

fn write_lock(&self)

Source

pub fn write(&self) -> RwLockWriteGuard<'_, T>

Locks this rwlock with exclusive write access, blocking the current thread until it can be acquired.

This function will not return while other writers or other readers currently have access to the lock.

Returns an RAII guard which will drop the write access of this rwlock when dropped.

Source

pub fn try_write(&self) -> Result<RwLockWriteGuard<'_, T>, WouldBlock>

Attempts to lock this rwlock with exclusive write access.

If the lock could not be acquired at this time, then Err is returned. Otherwise, an RAII guard is returned which will release the lock when it is dropped.

This function does not block.

This function does not provide any guarantees with respect to the ordering of whether contentious readers or writers will acquire the lock first.

Source

pub unsafe fn steal(&self) -> &mut T

This steals the ownership even if the value is locked. Racy.

§Safety

This is unsafe.

Source

pub fn into_inner(self) -> T

Consumes this RwLock, returning the underlying data.

Trait Implementations§

Source§

impl<T: Send> Debug for RwLock<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> Send for RwLock<T>
where T: ?Sized + Send,

Source§

impl<T> Sync for RwLock<T>
where T: ?Sized + Send,

Auto Trait Implementations§

§

impl<T> !Freeze for RwLock<T>

§

impl<T> !RefUnwindSafe for RwLock<T>

§

impl<T> Unpin for RwLock<T>
where T: Unpin + ?Sized,

§

impl<T> UnwindSafe for RwLock<T>
where T: UnwindSafe + ?Sized,

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

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

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

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

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.