Struct wasmer_types::HostRef [−][src]
Represents a piece of data located in the host environment.
Implementations
impl<T: 'static> HostRef<T>[src]
pub fn new(item: T) -> Self[src]
Creates a new HostRef<T> from T.
pub fn borrow(&self) -> Ref<'_, T>[src]
pub fn borrow_mut(&self) -> RefMut<'_, T>[src]
pub fn ptr_eq(&self, other: &Self) -> bool[src]
Returns true if the two HostRef<T>'s point to the same value (not just
values that compare as equal).
pub fn externref(&self) -> ExternRef[src]
Returns an opaque reference to the wrapped data in the form of
an ExternRef.
Panics
Panics if HostRef<T> is already mutably borrowed.
Trait Implementations
impl<T> Clone for HostRef<T>[src]
fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<T: Debug> Debug for HostRef<T>[src]
Auto Trait Implementations
impl<T> !RefUnwindSafe for HostRef<T>[src]
impl<T> !Send for HostRef<T>[src]
impl<T> !Sync for HostRef<T>[src]
impl<T> Unpin for HostRef<T>[src]
impl<T> !UnwindSafe for HostRef<T>[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut Tⓘ[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,