Trait ScenarioMetadata

Source
pub trait ScenarioMetadata {
    const NAME: &'static str;
    const DESCRIPTION: &'static str;
}
Expand description

ScenarioMetadata is a trait that represents the metadata of a scenario.

Required Associated Constants§

Source

const NAME: &'static str

Source

const DESCRIPTION: &'static str

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§