Struct scrypto_test::prelude::rust::cell::SyncUnsafeCell
source · pub struct SyncUnsafeCell<T>where
T: ?Sized,{ /* private fields */ }sync_unsafe_cell)Expand description
UnsafeCell, but Sync.
This is just an UnsafeCell, except it implements Sync
if T implements Sync.
UnsafeCell doesn’t implement Sync, to prevent accidental mis-use.
You can use SyncUnsafeCell instead of UnsafeCell to allow it to be
shared between threads, if that’s intentional.
Providing proper synchronization is still the task of the user,
making this type just as unsafe to use.
See UnsafeCell for details.
Implementations§
source§impl<T> SyncUnsafeCell<T>
impl<T> SyncUnsafeCell<T>
sourcepub const fn new(value: T) -> SyncUnsafeCell<T>
🔬This is a nightly-only experimental API. (sync_unsafe_cell)
pub const fn new(value: T) -> SyncUnsafeCell<T>
sync_unsafe_cell)Constructs a new instance of SyncUnsafeCell which will wrap the specified value.
sourcepub const fn into_inner(self) -> T
🔬This is a nightly-only experimental API. (sync_unsafe_cell)
pub const fn into_inner(self) -> T
sync_unsafe_cell)Unwraps the value, consuming the cell.
source§impl<T> SyncUnsafeCell<T>where
T: ?Sized,
impl<T> SyncUnsafeCell<T>where
T: ?Sized,
sourcepub const fn get(&self) -> *mut T
🔬This is a nightly-only experimental API. (sync_unsafe_cell)
pub const fn get(&self) -> *mut T
sync_unsafe_cell)Gets a mutable pointer to the wrapped value.
This can be cast to a pointer of any kind.
Ensure that the access is unique (no active references, mutable or not)
when casting to &mut T, and ensure that there are no mutations
or mutable aliases going on when casting to &T
sourcepub const fn get_mut(&mut self) -> &mut T
🔬This is a nightly-only experimental API. (sync_unsafe_cell)
pub const fn get_mut(&mut self) -> &mut T
sync_unsafe_cell)Returns a mutable reference to the underlying data.
This call borrows the SyncUnsafeCell mutably (at compile-time) which
guarantees that we possess the only reference.
sourcepub const fn raw_get(this: *const SyncUnsafeCell<T>) -> *mut T
🔬This is a nightly-only experimental API. (sync_unsafe_cell)
pub const fn raw_get(this: *const SyncUnsafeCell<T>) -> *mut T
sync_unsafe_cell)Gets a mutable pointer to the wrapped value.
See UnsafeCell::get for details.
Trait Implementations§
source§impl<T> Debug for SyncUnsafeCell<T>where
T: ?Sized,
impl<T> Debug for SyncUnsafeCell<T>where
T: ?Sized,
source§impl<T> Default for SyncUnsafeCell<T>where
T: Default,
impl<T> Default for SyncUnsafeCell<T>where
T: Default,
source§fn default() -> SyncUnsafeCell<T>
fn default() -> SyncUnsafeCell<T>
Creates an SyncUnsafeCell, with the Default value for T.
source§impl<T> From<T> for SyncUnsafeCell<T>
impl<T> From<T> for SyncUnsafeCell<T>
source§fn from(t: T) -> SyncUnsafeCell<T>
fn from(t: T) -> SyncUnsafeCell<T>
Creates a new SyncUnsafeCell<T> containing the given value.
impl<T, U> CoerceUnsized<SyncUnsafeCell<U>> for SyncUnsafeCell<T>where
T: CoerceUnsized<U>,
impl<T, U> DispatchFromDyn<SyncUnsafeCell<U>> for SyncUnsafeCell<T>where
T: DispatchFromDyn<U>,
impl<T> Sync for SyncUnsafeCell<T>
Auto Trait Implementations§
impl<T> !Freeze for SyncUnsafeCell<T>
impl<T> !RefUnwindSafe for SyncUnsafeCell<T>
impl<T> Send for SyncUnsafeCell<T>
impl<T> Unpin for SyncUnsafeCell<T>
impl<T> UnwindSafe for SyncUnsafeCell<T>where
T: UnwindSafe + ?Sized,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T1> DecodeUntypedSlice for T1where
T1: From<UntypedValue>,
impl<T1> DecodeUntypedSlice for T1where
T1: From<UntypedValue>,
source§fn decode_untyped_slice(results: &[UntypedValue]) -> Result<T1, UntypedError>
fn decode_untyped_slice(results: &[UntypedValue]) -> Result<T1, UntypedError>
source§impl<T> DefaultForNetwork for Twhere
T: Default,
impl<T> DefaultForNetwork for Twhere
T: Default,
fn default_for_network(_: &NetworkDefinition) -> T
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more