wasmtime

Trait GcRef

source
pub trait GcRef: GcRefImpl { }
Available on crate feature runtime only.
Expand description

A common trait implemented by all garbage-collected reference types.

This is a sealed trait, and may not be implemented for any types outside of the wasmtime crate.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

source§

impl<T> GcRef for T
where T: GcRefImpl,