[][src]Struct wasmtime::HostRef

pub struct HostRef<T>(_);

Methods

impl<T: 'static> HostRef<T>[src]

pub fn new(item: T) -> HostRef<T>[src]

pub fn borrow(&self) -> Ref<T>[src]

pub fn borrow_mut(&self) -> RefMut<T>[src]

pub fn ptr_eq(&self, other: &HostRef<T>) -> bool[src]

pub fn anyref(&self) -> AnyRef[src]

Trait Implementations

impl Into<HostRef<Trap>> for wasm_trap_t[src]

impl From<HostRef<Func>> for Extern[src]

impl From<HostRef<Global>> for Extern[src]

impl From<HostRef<Memory>> for Extern[src]

impl From<HostRef<Table>> for Extern[src]

impl From<HostRef<Func>> for Val[src]

impl<T> Clone for HostRef<T>[src]

impl<T: Debug> Debug for HostRef<T>[src]

Auto Trait Implementations

impl<T> !Send for HostRef<T>

impl<T> !Sync for HostRef<T>

impl<T> Unpin for HostRef<T>

impl<T> !UnwindSafe for HostRef<T>

impl<T> !RefUnwindSafe for HostRef<T>

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self