RwLock

Struct RwLock 

Source
pub struct RwLock<T: ?Sized> { /* private fields */ }
Expand description

A read-write lock

Implementations§

Source§

impl<T> RwLock<T>

Source

pub const fn new(val: T) -> Self

Create a new RwLock.

Source

pub fn into_inner(self) -> T

Consume the RwLock, returning the inner value.

Source§

impl<T> RwLock<T>
where T: ?Sized,

Source

pub fn get_mut(&mut self) -> &mut T

Get a mutable reference of the inner value T. This is safe because we have the mutable reference of the lock.

Source

pub fn try_write<'a>(&'a self) -> Option<RwLockWriteGuard<'a, T>>

Try write lock the RwLock, returns the write guard. Returns None if the RwLock is write locked.

Source

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

Write lock the RwLock, returns the write guard.

§Panics

If the RwLock is already write locked, this will panic if the check feature is turned on.

Source

pub fn try_read<'a>(&'a self) -> Option<RwLockReadGuard<'a, T>>

Try read lock the RwLock, returns the read guard. Returns None if the RwLock is write locked.

Source

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

Read lock the RwLock, returns the read guard.

§Panics

If the RwLock is already write locked, this will panic if the check feature is turned on.

Trait Implementations§

Source§

impl<T: Debug + ?Sized> Debug for RwLock<T>

Source§

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

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

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

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T> From<T> for RwLock<T>

Source§

fn from(val: T) -> Self

Converts to this type from the input type.
Source§

impl<T> RefUnwindSafe for RwLock<T>
where T: ?Sized,

Source§

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

Source§

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

Source§

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

Auto Trait Implementations§

§

impl<T> !Freeze for RwLock<T>

§

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

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<!> for T

Source§

fn from(t: !) -> T

Converts to this type from the input type.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

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

Source§

type Error = Infallible

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

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

Performs the conversion.
Source§

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

Source§

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

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

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

Performs the conversion.