pub trait Provider: Send + Sync {
// Required method
fn manifests(&self) -> Result<Vec<Manifest>, SkillError>;
}Expand description
Source of skill packs.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".