//! Provides a way to resolve URIs during import.
usestd::error::Error;pubmodfile_resolver;/// Resolves a URI.
pubtraitResolver{typeError: Error +Send+Sync+Sized;#[allow(async_fn_in_trait)]
async fnresolve(&mutself, uri:&str)->Result<Vec<u8>, Self::Error>;}