Sha256: 2f238249e15eeb34a90eaa0ee3c3975799b5769279076540264e710c2f30f5e6
Contents?: true
Size: 694 Bytes
Versions: 4
Compression:
Stored size: 694 Bytes
Contents
//! The dummy implementation of garbage-collection, for when the `gc` Cargo //! feature is disabled. //! //! We provide dummy/uninhabited types so that downstream users (and the rest of //! Wasmtime) need to do fewer `#[cfg(...)]`s for when GC is enabled versus //! disabled at compile time. While we implement dummy methods for these types' //! public methods, we do not, however, create dummy constructors constructors. #![allow(missing_docs, unreachable_code)] mod anyref; mod arrayref; mod eqref; mod externref; mod i31; mod rooting; mod structref; pub use anyref::*; pub use arrayref::*; pub use eqref::*; pub use externref::*; pub use i31::*; pub use rooting::*; pub use structref::*;
Version data entries
4 entries across 4 versions & 1 rubygems