pub struct AtomicRefMut<'b, T: ?Sized + 'b> {
    pub(crate) value: NonNull<T>,
    pub(crate) borrow: AtomicBorrowRefMut<'b>,
    pub(crate) marker: PhantomData<&'b mut T>,
}
Expand description

A wrapper type for a mutably borrowed value from an AtomicRefCell<T>.

Fields§

§value: NonNull<T>§borrow: AtomicBorrowRefMut<'b>§marker: PhantomData<&'b mut T>

Implementations§

source§

impl<'b, T: ?Sized> AtomicRefMut<'b, T>

source

pub fn map<U: ?Sized, F>(orig: AtomicRefMut<'b, T>, f: F) -> AtomicRefMut<'b, U>where F: FnOnce(&mut T) -> &mut U,

Make a new AtomicRefMut for a component of the borrowed data, e.g. an enum variant.

source

pub fn filter_map<U: ?Sized, F>( orig: AtomicRefMut<'b, T>, f: F ) -> Option<AtomicRefMut<'b, U>>where F: FnOnce(&mut T) -> Option<&mut U>,

Make a new AtomicRefMut for an optional component of the borrowed data.

Trait Implementations§

source§

impl<'b, T: ?Sized + Debug + 'b> Debug for AtomicRefMut<'b, T>

source§

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

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

impl<'b, T: ?Sized> Deref for AtomicRefMut<'b, T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &T

Dereferences the value.
source§

impl<'b, T: ?Sized> DerefMut for AtomicRefMut<'b, T>

source§

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

Mutably dereferences the value.
source§

impl<'b, T: ?Sized> Send for AtomicRefMut<'b, T>where for<'a> &'a mut T: Send,

source§

impl<'b, T: ?Sized> Sync for AtomicRefMut<'b, T>where for<'a> &'a mut T: Sync,

Auto Trait Implementations§

§

impl<'b, T: ?Sized> RefUnwindSafe for AtomicRefMut<'b, T>where T: RefUnwindSafe,

§

impl<'b, T: ?Sized> Unpin for AtomicRefMut<'b, T>

§

impl<'b, T> !UnwindSafe for AtomicRefMut<'b, T>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.