Struct wasmer_wasix::syscalls::FunctionEnv
pub(crate) struct FunctionEnv<T>(pub(crate) BackendFunctionEnv<T>);
Expand description
An opaque reference to a function environment.
The function environment data is owned by the Store
.
Tuple Fields§
§0: BackendFunctionEnv<T>
Implementations§
§impl<T> FunctionEnv<T>
impl<T> FunctionEnv<T>
pub fn new(store: &mut impl AsStoreMut, value: T) -> FunctionEnv<T>
pub fn new(store: &mut impl AsStoreMut, value: T) -> FunctionEnv<T>
Make a new FunctionEnv
pub fn as_ref<'a>(&self, store: &'a impl AsStoreRef) -> &'a T
pub fn as_ref<'a>(&self, store: &'a impl AsStoreRef) -> &'a T
Get the data as reference
pub fn as_mut<'a>(&self, store: &'a mut impl AsStoreMut) -> &'a mut T
pub fn as_mut<'a>(&self, store: &'a mut impl AsStoreMut) -> &'a mut T
Get the data as mutable
pub fn into_mut(self, store: &mut impl AsStoreMut) -> FunctionEnvMut<'_, T>
pub fn into_mut(self, store: &mut impl AsStoreMut) -> FunctionEnvMut<'_, T>
Convert it into a FunctionEnvMut
§impl<T> FunctionEnv<T>
impl<T> FunctionEnv<T>
pub fn into_sys(self) -> FunctionEnv<T>
pub fn into_sys(self) -> FunctionEnv<T>
Consume self into crate::backend::sys::function::FunctionEnv
.
pub fn as_sys(&self) -> &FunctionEnv<T>
pub fn as_sys(&self) -> &FunctionEnv<T>
Convert a reference to self into a reference to crate::backend::sys::function::FunctionEnv
.
pub fn as_sys_mut(&mut self) -> &mut FunctionEnv<T>
pub fn as_sys_mut(&mut self) -> &mut FunctionEnv<T>
Convert a mutable reference to self into a mutable reference crate::backend::sys::function::FunctionEnv
.
Trait Implementations§
§impl<T> Clone for FunctionEnv<T>
impl<T> Clone for FunctionEnv<T>
§fn clone(&self) -> FunctionEnv<T>
fn clone(&self) -> FunctionEnv<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<T> Debug for FunctionEnv<T>where
T: Debug,
impl<T> Debug for FunctionEnv<T>where
T: Debug,
§impl<T> From<BackendFunctionEnv<T>> for FunctionEnv<T>
impl<T> From<BackendFunctionEnv<T>> for FunctionEnv<T>
§fn from(value: BackendFunctionEnv<T>) -> FunctionEnv<T>
fn from(value: BackendFunctionEnv<T>) -> FunctionEnv<T>
Converts to this type from the input type.
§impl<T> From<FunctionEnv<T>> for FunctionEnv<T>
impl<T> From<FunctionEnv<T>> for FunctionEnv<T>
§fn from(value: FunctionEnv<T>) -> FunctionEnv<T>
fn from(value: FunctionEnv<T>) -> FunctionEnv<T>
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for FunctionEnv<T>
impl<T> RefUnwindSafe for FunctionEnv<T>where
T: RefUnwindSafe,
impl<T> Send for FunctionEnv<T>where
T: Send,
impl<T> Sync for FunctionEnv<T>where
T: Sync,
impl<T> Unpin for FunctionEnv<T>where
T: Unpin,
impl<T> UnwindSafe for FunctionEnv<T>where
T: UnwindSafe,
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.
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Returns the layout of the type.
§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2where
T: SharedNiching<N1, N2>,
N1: Niching<T>,
N2: Niching<T>,
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2where
T: SharedNiching<N1, N2>,
N1: Niching<T>,
N2: Niching<T>,
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Pointee for T
impl<T> Pointee for T
source§impl<T> Upcastable for T
impl<T> Upcastable for T
fn upcast_any_ref(&self) -> &(dyn Any + 'static)
fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn upcast_any_box(self: Box<T>) -> Box<dyn Any>
§impl<T> Upcastable for T
impl<T> Upcastable for T
§fn upcast_any_ref(&self) -> &(dyn Any + 'static)
fn upcast_any_ref(&self) -> &(dyn Any + 'static)
upcast ref
§fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
upcast mut ref
§fn upcast_any_box(self: Box<T>) -> Box<dyn Any>
fn upcast_any_box(self: Box<T>) -> Box<dyn Any>
upcast boxed dyn