Struct SharedMemory

Source
pub struct SharedMemory(/* private fields */);

Trait Implementations§

Source§

impl<T: Atomic> AtomicOps<T> for SharedMemory

Source§

type Value = <T as Atomic>::Value

Source§

unsafe fn atomic_store(dst: *mut T, val: Self::Value, order: Ordering)

Source§

unsafe fn atomic_load(dst: *const T, order: Ordering) -> Self::Value

Source§

unsafe fn atomic_swap( dst: *mut T, val: Self::Value, order: Ordering, ) -> Self::Value

Source§

unsafe fn atomic_add( dst: *mut T, val: Self::Value, order: Ordering, ) -> Self::Value

Source§

unsafe fn atomic_sub( dst: *mut T, val: Self::Value, order: Ordering, ) -> Self::Value

Source§

unsafe fn atomic_compare_exchange( dst: *mut T, old: Self::Value, new: Self::Value, success: Ordering, failure: Ordering, ) -> Result<Self::Value, Self::Value>

Source§

unsafe fn atomic_compare_exchange_weak( dst: *mut T, old: Self::Value, new: Self::Value, success: Ordering, failure: Ordering, ) -> Result<Self::Value, Self::Value>

Source§

unsafe fn atomic_and( dst: *mut T, val: Self::Value, order: Ordering, ) -> Self::Value

Source§

unsafe fn atomic_nand( dst: *mut T, val: Self::Value, order: Ordering, ) -> Self::Value

Source§

unsafe fn atomic_or( dst: *mut T, val: Self::Value, order: Ordering, ) -> Self::Value

Source§

unsafe fn atomic_xor( dst: *mut T, val: Self::Value, order: Ordering, ) -> Self::Value

Source§

unsafe fn atomic_max( dst: *mut T, val: Self::Value, order: Ordering, ) -> Self::Value

Source§

unsafe fn atomic_min( dst: *mut T, val: Self::Value, order: Ordering, ) -> Self::Value

Source§

impl<T: FromBytes + IntoBytes> BulkOps<T> for SharedMemory

Source§

unsafe fn memmove(dst: *mut T, src: *const T, count: usize)

Source§

unsafe fn memcpy_into(dst: *mut T, src: *const T, count: usize)

Source§

unsafe fn memcpy_from(dst: *mut T, src: *const T, count: usize)

Source§

unsafe fn memset(dst: *mut T, val: u8, count: usize)

Source§

impl<T: FromBytes + IntoBytes> UnitaryOps<T> for SharedMemory

Source§

unsafe fn read(src: *const T) -> T

Source§

unsafe fn write(dst: *mut T, src: T)

Source§

impl MemoryType for SharedMemory

Auto Trait Implementations§

§

impl Freeze for SharedMemory

§

impl RefUnwindSafe for SharedMemory

§

impl Send for SharedMemory

§

impl Sync for SharedMemory

§

impl Unpin for SharedMemory

§

impl UnwindSafe for SharedMemory

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.

Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The metadata type for pointers and references to this type.
§

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.