Struct servo_arc::UniqueArc

source ·
pub struct UniqueArc<T: ?Sized>(_);
Expand description

An Arc that is known to be uniquely owned

When Arcs are constructed, they are known to be uniquely owned. In such a case it is safe to mutate the contents of the Arc. Normally, one would just handle this by mutating the data on the stack before allocating the Arc, however it’s possible the data is large or unsized and you need to heap-allocate it earlier in such a way that it can be freely converted into a regular Arc once you’re done.

UniqueArc exists for this purpose, when constructed it performs the same allocations necessary for an Arc, however it allows mutable access. Once the mutation is finished, you can call .shareable() and get a regular Arc out of it.

Ignore the doctest below there’s no way to skip building with refcount logging during doc tests (see rust-lang/rust#45599).

let data = [1, 2, 3, 4, 5];
let mut x = UniqueArc::new(data);
x[4] = 7; // mutate!
let y = x.shareable(); // y is an Arc<T>

Implementations§

source§

impl<T> UniqueArc<T>

source

pub fn new(data: T) -> Self

Construct a new UniqueArc

source

pub fn new_uninit() -> UniqueArc<MaybeUninit<T>>

Construct an uninitialized arc

source

pub fn shareable(self) -> Arc<T>

Convert to a shareable Arc once we’re done mutating it

source§

impl<T> UniqueArc<MaybeUninit<T>>

source

pub unsafe fn assume_init(this: Self) -> UniqueArc<T>

Convert to an initialized Arc.

Trait Implementations§

source§

impl<T> Deref for UniqueArc<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &T

Dereferences the value.
source§

impl<T> DerefMut for UniqueArc<T>

source§

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

Mutably dereferences the value.

Auto Trait Implementations§

§

impl<T: ?Sized> RefUnwindSafe for UniqueArc<T>where T: RefUnwindSafe,

§

impl<T: ?Sized> Send for UniqueArc<T>where T: Send + Sync,

§

impl<T: ?Sized> Sync for UniqueArc<T>where T: Send + Sync,

§

impl<T: ?Sized> Unpin for UniqueArc<T>where T: Unpin,

§

impl<T: ?Sized> UnwindSafe for UniqueArc<T>where T: UnwindSafe + RefUnwindSafe,

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · 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.
const: unstable · 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.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.