Struct atomic_refcell::AtomicRefMut
source · [−]pub struct AtomicRefMut<'b, T: ?Sized + 'b> { /* private fields */ }
Expand description
A wrapper type for a mutably borrowed value from an AtomicRefCell<T>
.
Implementations
sourceimpl<'b, T: ?Sized> AtomicRefMut<'b, T>
impl<'b, T: ?Sized> AtomicRefMut<'b, T>
sourcepub fn map<U: ?Sized, F>(orig: AtomicRefMut<'b, T>, f: F) -> AtomicRefMut<'b, U> where
F: FnOnce(&mut T) -> &mut U,
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.
sourcepub fn filter_map<U: ?Sized, F>(
orig: AtomicRefMut<'b, T>,
f: F
) -> Option<AtomicRefMut<'b, U>> where
F: FnOnce(&mut T) -> Option<&mut U>,
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
sourceimpl<'b, T: ?Sized + Debug + 'b> Debug for AtomicRefMut<'b, T>
impl<'b, T: ?Sized + Debug + 'b> Debug for AtomicRefMut<'b, T>
sourceimpl<'b, T: ?Sized> Deref for AtomicRefMut<'b, T>
impl<'b, T: ?Sized> Deref for AtomicRefMut<'b, T>
Auto Trait Implementations
impl<'b, T: ?Sized> RefUnwindSafe for AtomicRefMut<'b, T> where
T: RefUnwindSafe,
impl<'b, T: ?Sized> Send for AtomicRefMut<'b, T> where
T: Send,
impl<'b, T: ?Sized> Sync for AtomicRefMut<'b, T> where
T: Sync,
impl<'b, T: ?Sized> Unpin for AtomicRefMut<'b, T>
impl<'b, T> !UnwindSafe for AtomicRefMut<'b, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more