pub trait Retrieve: RetrieverBounds {
// Required method
fn retrieve(
&self,
uri: &Uri<String>,
) -> Result<Value, Box<dyn Error + Send + Sync>>;
}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.