LockMut

Struct LockMut 

Source
pub struct LockMut<T>(/* private fields */);
Expand description

This datatype provides a lock with interior mutability for the data inside.

Implementations§

Source§

impl<T> LockMut<T>

Source

pub const fn new() -> Self

Create a new empty LockMut.

§Examples
static LOCKED_DATA: LockMut<u8> = LockMut::new();
Source

pub fn init(&self, val: T)

Initialize a previously-uninitialized LockMut.

§Examples
static LOCKED_DATA: LockMut<u8> = LockMut::new();
LOCKED_DATA.init(5);
§Panics

Panics if this LockMut is to be initialized a second time.

Source

pub fn with_lock<F: FnOnce(&mut T)>(&self, f: F)

Locks, then runs the closure f with a mutable reference to the locked data.

§Examples
static LOCKED_DATA: LockMut<u8> = LockMut::new();
LOCKED_DATA.init(5);
LOCKED_DATA.with_lock(|u| *u += 1);
§Panics

Panics if this LockMut is uninitialized.

Source

pub fn try_with_lock<F: FnOnce(&mut T)>(&self, f: F)

Locks if this LockMut is initialized, then runs the closure f with a mutable reference to the locked data. If the LockMut is uninitialized, this method does nothing.

§Examples
static LOCKED_DATA: LockMut<u8> = LockMut::new();
LOCKED_DATA.try_with_lock(|_| panic!());

Trait Implementations§

Source§

impl<T: Debug> Debug for LockMut<T>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T> !Freeze for LockMut<T>

§

impl<T> !RefUnwindSafe for LockMut<T>

§

impl<T> Send for LockMut<T>
where T: Send,

§

impl<T> Sync for LockMut<T>
where T: Send,

§

impl<T> Unpin for LockMut<T>
where T: Unpin,

§

impl<T> UnwindSafe for LockMut<T>
where T: UnwindSafe,

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<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.