Struct spin::rwlock::RwLockReadGuard[][src]

pub struct RwLockReadGuard<'a, T: 'a + ?Sized> { /* fields omitted */ }
This is supported on crate feature rwlock only.
Expand description

A guard that provides immutable data access.

When the guard falls out of scope it will decrement the read count, potentially releasing the lock.

Implementations

Leak the lock guard, yielding a reference to the underlying data.

Note that this function will permanently lock the original lock for all but reading locks.

let mylock = spin::RwLock::new(0);

let data: &i32 = spin::RwLockReadGuard::leak(mylock.read());

assert_eq!(*data, 0);

Trait Implementations

Formats the value using the given formatter. Read more

The resulting type after dereferencing.

Dereferences the value.

Formats the value using the given formatter. Read more

Executes the destructor for this type. 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

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

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.