Enum wasmer_vm::MaybeInstanceOwned
source · pub enum MaybeInstanceOwned<T> {
Host(Box<UnsafeCell<T>>),
Instance(NonNull<T>),
}
Expand description
Data used by the generated code is generally located inline within the
VMContext
for items defined in an instance. Host-defined objects are
allocated separately and owned directly by the context.
Variants
Host(Box<UnsafeCell<T>>)
The data is owned here.
Instance(NonNull<T>)
The data is stored inline in the VMContext
of an instance.
Implementations
sourceimpl<T> MaybeInstanceOwned<T>
impl<T> MaybeInstanceOwned<T>
Trait Implementations
Auto Trait Implementations
impl<T> !RefUnwindSafe for MaybeInstanceOwned<T>
impl<T> !Send for MaybeInstanceOwned<T>
impl<T> !Sync for MaybeInstanceOwned<T>
impl<T> Unpin for MaybeInstanceOwned<T>
impl<T> UnwindSafe for MaybeInstanceOwned<T>where
T: UnwindSafe + RefUnwindSafe,
Blanket Implementations
impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
Deserializes using the given deserializer