pub trait ProviderModelPolicy:
Send
+ Sync
+ Debug {
// Required method
fn supported_variants(&self, model: &str) -> &'static [&'static str];
}Required Methods§
fn supported_variants(&self, model: &str) -> &'static [&'static str]
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".