Trait WasmtimeOption

Source
pub trait WasmtimeOption:
    Sized
    + Send
    + Sync
    + Clone
    + 'static {
    const OPTIONS: &'static [OptionDesc<Self>];
}
Expand description

Helper trait used by CommaSeparated which contains a list of all options supported by the option group.

Required Associated Constants§

Source

const OPTIONS: &'static [OptionDesc<Self>]

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§