pub struct ArcUmbra<T> { /* private fields */ }Expand description
UmbraPointer<T> wrapping an Arc<T>. The Arc reference count
keeps the target alive; the UmbraPointer is a copy of the Arc’s
data pointer plus the prefix.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for ArcUmbra<T>
impl<T> RefUnwindSafe for ArcUmbra<T>
impl<T> Send for ArcUmbra<T>
impl<T> Sync for ArcUmbra<T>
impl<T> Unpin for ArcUmbra<T>
impl<T> UnsafeUnpin for ArcUmbra<T>
impl<T> UnwindSafe for ArcUmbra<T>
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