wasmtime 30.0.2

High-level API to expose the Wasmtime runtime
Documentation
//! Dummy GC types for when the `gc` cargo feature is disabled.
//!
//! To reduce `#[cfg(...)]`s, this provides all the same methods as the real
//! `VMExternRef` except for constructors.

#![allow(missing_docs)]

pub enum VMExternRef {}

pub enum VMStructRef {}

pub enum VMArrayRef {}

pub struct VMGcObjectDataMut<'a> {
    _inner: VMStructRef,
    _phantom: core::marker::PhantomData<&'a mut ()>,
}

impl VMGcObjectDataMut<'_> {
    pub fn new(_data: &mut [u8]) -> Self {
        unreachable!()
    }
}