Struct rtic::RacyCell

source ·
pub struct RacyCell<T>(/* private fields */);
Expand description

Internal replacement for static mut T

Used to represent RTIC Resources

Soundness:

  1. Unsafe API for internal use only

  2. get_mut(&self) -> *mut T returns a raw mutable pointer to the inner T casting to &mut T is under control of RTIC RTIC ensures &mut T to be unique under Rust aliasing rules.

    Implementation uses the underlying UnsafeCell<T> self.0.get() -> *mut T

  3. get(&self) -> *const T returns a raw immutable (const) pointer to the inner T casting to &T is under control of RTIC RTIC ensures &T to be shared under Rust aliasing rules.

    Implementation uses the underlying UnsafeCell<T> self.0.get() -> *mut T, demoted to *const T

Implementations§

source§

impl<T> RacyCell<T>

source

pub const fn new(value: T) -> Self

Create a RacyCell

source

pub unsafe fn get_mut(&self) -> *mut T

Get *mut T

Safety

See documentation notes for RacyCell

source

pub unsafe fn get(&self) -> *const T

Get *const T

Safety

See documentation notes for RacyCell

Trait Implementations§

source§

impl<T> Sync for RacyCell<T>

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for RacyCell<T>

§

impl<T> Send for RacyCell<T>
where T: Send,

§

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

§

impl<T> UnwindSafe for RacyCell<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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.