#[repr(C)]
pub union wasmtime_extern_union {
pub func: Func,
pub table: Table,
pub global: Global,
pub memory: Memory,
pub sharedmemory: ManuallyDrop<Box<SharedMemory>>,
}
Fields§
§func: Func
§table: Table
§global: Global
§memory: Memory
Auto Trait Implementations§
impl Freeze for wasmtime_extern_union
impl !RefUnwindSafe for wasmtime_extern_union
impl Send for wasmtime_extern_union
impl Sync for wasmtime_extern_union
impl Unpin for wasmtime_extern_union
impl !UnwindSafe for wasmtime_extern_union
Blanket Implementations§
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