pub trait ConfigShapeVerifier {
// Required method
fn verify(&self, shape: &ContentId, config: &Datum) -> Result<(), String>;
}Expand description
Port used to validate a provider configuration through its declared Shape.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".