Struct qutex::QrwLock [] [src]

pub struct QrwLock<T> { /* fields omitted */ }

A queue-backed read/write data lock.

As with any queue-backed system, deadlocks must be carefully avoided when interoperating with other queues.

Methods

impl<T> QrwLock<T>
[src]

[src]

Creates and returns a new QrwLock.

[src]

Deprecated since 0.0.9

: please use ::read instead

Returns a new FutureReadGuard which can be used as a future and will resolve into a ReadGuard.

[src]

Deprecated since 0.0.9

: please use ::write instead

Returns a new FutureWriteGuard which can be used as a future and will resolve into a WriteGuard.

[src]

Returns a new FutureReadGuard which can be used as a future and will resolve into a ReadGuard.

[src]

Returns a new FutureWriteGuard which can be used as a future and will resolve into a WriteGuard.

[src]

Pushes a lock request onto the queue.

[src]

Returns a mutable reference to the inner Vec if there are currently no other copies of this QrwLock.

Since this call borrows the inner lock mutably, no actual locking needs to take place---the mutable borrow statically guarantees no locks exist.

[src]

Returns a reference to the inner value.

[src]

Returns a mutable reference to the inner value.

[src]

Pops the next lock request in the queue if possible.

[src]

Converts a single read lock (read count of '1') into a write lock.

Returns an error containing a oneshot receiver if there is currently more than one read lock. When the read count reaches one, the receiver channel will be completed (i.e. poll it).

Panics if there are no read locks.

Do not call this method directly unless you are using a custom guard or are otherwise managing the lock state manually. Use ReadGuard::upgrade instead.

[src]

Converts a write lock into a read lock then processes the queue, allowing additional read requests to acquire locks.

Use WriteGuard::downgrade rather than calling this directly.

[src]

Decreases the reader count by one and unparks the next requester task in the queue if possible.

If a reader is waiting to be upgraded and the read lock count reaches 1, the upgrade sender will be completed.

[src]

Unlocks this (the caller's) lock and unparks the next requester task in the queue if possible.

Trait Implementations

impl<T: Debug> Debug for QrwLock<T>
[src]

[src]

Formats the value using the given formatter.

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

[src]

Performs the conversion.

impl<T> Clone for QrwLock<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more