[][src]Struct wasmer_runtime_core::memory::MemoryView

pub struct MemoryView<'a, T: 'a, A = NonAtomically> { /* fields omitted */ }

Methods

impl<'a, T: IntCast> MemoryView<'a, T, NonAtomically>[src]

pub fn atomically(&self) -> MemoryView<'a, T, Atomically>[src]

Trait Implementations

impl<'a, T> Deref for MemoryView<'a, T, NonAtomically>[src]

type Target = [Cell<T>]

The resulting type after dereferencing.

impl<'a, T: IntCast> Deref for MemoryView<'a, T, Atomically>[src]

type Target = [Atomic<T>]

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a, T, A = NonAtomically> !Send for MemoryView<'a, T, A>

impl<'a, T, A = NonAtomically> !Sync for MemoryView<'a, T, A>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T