#[repr(C)]
pub struct RootedRefCell<T> { /* private fields */ }
Expand description

Analagous to std::cell::RefCell. In particular like std::cell::RefCell and unlike std::sync::Mutex, it doesn’t perform any atomic operations internally, making it relatively inexpensive.

Unlike std::cell::RefCell, this type is Send and Sync if T is Send. This is safe because the owner is required to prove access to the associated Root, which is ![Sync], to borrow.

Implementations§

source§

impl<T> RootedRefCell<T>

source

pub fn new(root: &Root, val: T) -> Self

Create a RootedRefCell associated with root.

source

pub fn borrow<'a>(&'a self, root: &'a Root) -> RootedRefCellRef<'a, T>

Borrow a reference. Panics if root is for the wrong Root, or if this object is alread mutably borrowed.

source

pub fn borrow_mut<'a>(&'a self, root: &'a Root) -> RootedRefCellRefMut<'a, T>

Borrow a mutable reference. Panics if root is for the wrong Root, or if this object is already borrowed.

source

pub fn into_inner(self) -> T

Trait Implementations§

source§

impl<T: Debug> Debug for RootedRefCell<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> ExplicitDrop for RootedRefCell<T>
where T: ExplicitDrop,

source§

impl<T: VirtualAddressSpaceIndependent> VirtualAddressSpaceIndependent for RootedRefCell<T>

source§

const IGNORE: () = _

Used by the derive macro to validate that fields are Vasi.
source§

impl<T: Send> Send for RootedRefCell<T>

source§

impl<T: Send> Sync for RootedRefCell<T>

Auto Trait Implementations§

§

impl<T> !Freeze for RootedRefCell<T>

§

impl<T> !RefUnwindSafe for RootedRefCell<T>

§

impl<T> Unpin for RootedRefCell<T>
where T: Unpin,

§

impl<T> UnwindSafe for RootedRefCell<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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> NoTypeInference for T

source§

type This = T

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V