Struct uptown_funk::types::Pointer[][src]

pub struct Pointer<T: WasmType> { /* fields omitted */ }

Implementations

impl<T: WasmType> Pointer<T>[src]

pub fn copy(&mut self, val: &T)[src]

pub fn set(&mut self, val: T)[src]

pub fn value(&self) -> T::Value[src]

pub fn next(self) -> Option<Self>[src]

pub fn u8_pointer(self) -> Pointer<u8>[src]

impl Pointer<u8>[src]

pub fn copy_slice(self, slice: &[u8]) -> Result<Option<Self>, Trap>[src]

pub fn mut_slice<'a>(&'a self, n: usize) -> &'a mut [u8]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

pub fn cast<T: WasmType>(self) -> Option<Pointer<T>>[src]

pub fn set_cast<T: WasmType>(self, val: T) -> Result<Option<Self>, Trap>[src]

Trait Implementations

impl<T: WasmType> Debug for Pointer<T>[src]

impl<T: WasmType> FromWasm for Pointer<T>[src]

type From = u32

type State = ()

Auto Trait Implementations

impl<T> RefUnwindSafe for Pointer<T> where
    T: RefUnwindSafe

impl<T> Send for Pointer<T> where
    T: Send

impl<T> Sync for Pointer<T> where
    T: Sync

impl<T> Unpin for Pointer<T> where
    T: Unpin

impl<T> UnwindSafe for Pointer<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.