pub trait Retrieve: Send + Sync {
// Required method
fn retrieve(
&self,
uri: &Uri<String>,
) -> Result<Value, Box<dyn Error + Sync + Send>>;
}Expand description
Trait for retrieving resources from external sources.
Implementors of this trait can be used to fetch resources that are not
initially present in a crate::Registry.