pub trait ExampleProvider: Send + Sync { // Required method fn examples(&self) -> Vec<Example>; }
Trait for providing examples dynamically.
Get the examples to inject.