Struct std::cell::SyncUnsafeCell

source ·
#[repr(transparent)]
pub struct SyncUnsafeCell<T>where T: ?Sized,{ /* private fields */ }
🔬This is a nightly-only experimental API. (sync_unsafe_cell #95439)
Expand description

UnsafeCell,但是 Sync

这只是一个 UnsafeCell,但如果 T 实现了 Sync,则它也就实现了 Sync

UnsafeCell 没有实现 Sync,以防止意外误用。 如果有意的话,您可以使用 SyncUnsafeCell 而不是 UnsafeCell 来允许它在线程之间共享。

提供适当的同步仍然是用户的任务,因此使用这种类型同样不安全。

有关详细信息,请参见 UnsafeCell

Implementations§

source§

impl<T> SyncUnsafeCell<T>

source

pub const fn new(value: T) -> SyncUnsafeCell<T>

🔬This is a nightly-only experimental API. (sync_unsafe_cell #95439)

创建一个新的 SyncUnsafeCell 实例,它将包装指定的值。

source

pub const fn into_inner(self) -> T

🔬This is a nightly-only experimental API. (sync_unsafe_cell #95439)

解开值,消耗 cell。

source§

impl<T> SyncUnsafeCell<T>where T: ?Sized,

source

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

🔬This is a nightly-only experimental API. (sync_unsafe_cell #95439)

获取指向包装值的可变指针。

可以将其强制转换为任何类型的指针。 强制转换为 &mut T 时,访问是唯一的 (无活跃的引用,可变或不活动),并确保转换为 &T 时没有发生任何可变的或可变别名。

source

pub const fn get_mut(&mut self) -> &mut T

🔬This is a nightly-only experimental API. (sync_unsafe_cell #95439)

返回对底层数据的可变引用。

这个调用(在编译时)可变地借用了 SyncUnsafeCell,这保证了我们拥有唯一的引用。

source

pub const fn raw_get(this: *const SyncUnsafeCell<T>) -> *mut T

🔬This is a nightly-only experimental API. (sync_unsafe_cell #95439)

获取指向包装值的可变指针。

有关详细信息,请参见 UnsafeCell::get

Trait Implementations§

source§

impl<T> Debug for SyncUnsafeCell<T>where T: ?Sized,

source§

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

使用给定的格式化程序格式化该值。 Read more
source§

impl<T> Default for SyncUnsafeCell<T>where T: Default,

source§

fn default() -> SyncUnsafeCell<T>

使用 T 的 Default 值创建一个 SyncUnsafeCell

source§

impl<T> From<T> for SyncUnsafeCell<T>

source§

fn from(t: T) -> SyncUnsafeCell<T>

创建一个包含给定值的新 SyncUnsafeCell<T>

source§

impl<T, U> CoerceUnsized<SyncUnsafeCell<U>> for SyncUnsafeCell<T>where T: CoerceUnsized<U>,

source§

impl<T, U> DispatchFromDyn<SyncUnsafeCell<U>> for SyncUnsafeCell<T>where T: DispatchFromDyn<U>,

source§

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

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for SyncUnsafeCell<T>

§

impl<T: ?Sized> Send for SyncUnsafeCell<T>where T: Send,

§

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

§

impl<T: ?Sized> UnwindSafe for SyncUnsafeCell<T>where T: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

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

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

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

source§

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

从拥有的值中借用。 Read more
source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

从输入类型转换为此类型。
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

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

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

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

§

type Error = Infallible

发生转换错误时返回的类型。
source§

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

执行转换。
source§

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

§

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

发生转换错误时返回的类型。
source§

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

执行转换。