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>]

Object Safety§

This trait is not object safe.

Implementors§