pub struct ArenaRc<T>(/* private fields */)
where
T: ?Sized;
Expand description
An equivalent to ArenaBox
that holds onto a reference to the
arena to allow it to have static lifetime, and implements Clone
allowing it to be shared. Since it’s shared, you can’t get a mutable
reference to it back without using Self::try_unwrap
to get the
inner ArenaStaticBox
.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for ArenaRc<T>where
T: ?Sized,
impl<T> RefUnwindSafe for ArenaRc<T>where
T: RefUnwindSafe + ?Sized,
impl<T> Send for ArenaRc<T>
impl<T> Sync for ArenaRc<T>
impl<T> Unpin for ArenaRc<T>where
T: ?Sized,
impl<T> UnwindSafe for ArenaRc<T>where
T: RefUnwindSafe + ?Sized,
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