rustubs::proc::sync

Struct L2Sync

Source
pub struct L2Sync<T> {
    data: SyncUnsafeCell<T>,
}
Expand description

All L2Sync objects are guaranteed to be synchronized on the epilogue level.

Fields§

§data: SyncUnsafeCell<T>

Implementations§

Source§

impl<T> L2Sync<T>

Source

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

Source

pub fn lock(&self) -> L2Guard<'_, T>

Source

pub unsafe fn get_ref_unguarded(&self) -> &T

This breaks synchronization, the caller is responsible of checking the global L2_AVAILABLE flag, and do other stuffs (like relaying) when epilogue level is occupied.

Source

pub unsafe fn get_ref_mut_unguarded(&self) -> &mut T

Auto Trait Implementations§

§

impl<T> !Freeze for L2Sync<T>

§

impl<T> !RefUnwindSafe for L2Sync<T>

§

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

§

impl<T> Sync for L2Sync<T>
where T: Sync,

§

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

§

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

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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.
§

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

Performs the conversion.