Struct atomic_refcell::AtomicBorrowRef
source · pub(crate) struct AtomicBorrowRef<'b> {
pub(crate) borrow: &'b AtomicUsize,
}
Fields§
§borrow: &'b AtomicUsize
Implementations§
source§impl<'b> AtomicBorrowRef<'b>
impl<'b> AtomicBorrowRef<'b>
pub(crate) fn try_new(borrow: &'b AtomicUsize) -> Result<Self, &'static str>
pub(crate) fn check_overflow(borrow: &'b AtomicUsize, new: usize)
Trait Implementations§
source§impl<'b> Clone for AtomicBorrowRef<'b>
impl<'b> Clone for AtomicBorrowRef<'b>
source§fn clone(&self) -> AtomicBorrowRef<'b>
fn clone(&self) -> AtomicBorrowRef<'b>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'b> Freeze for AtomicBorrowRef<'b>
impl<'b> RefUnwindSafe for AtomicBorrowRef<'b>
impl<'b> Send for AtomicBorrowRef<'b>
impl<'b> Sync for AtomicBorrowRef<'b>
impl<'b> Unpin for AtomicBorrowRef<'b>
impl<'b> UnwindSafe for AtomicBorrowRef<'b>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more