wasmtime/runtime/
uninhabited.rs

1/// An uninhabited type.
2///
3/// Useful for modeling Wasm's bottom types or `cfg`'d off features.
4#[derive(Copy, Clone, Debug, PartialEq, Eq)]
5pub(crate) enum Uninhabited {}