identity_credential/sd_jwt_vc/
resolver.rsuse async_trait::async_trait;
use thiserror::Error;
pub(crate) type Result<T> = std::result::Result<T, Error>;
#[derive(Debug, Error)]
pub enum Error {
#[error("The requested item \"{0}\" was not found.")]
NotFound(String),
#[error("Failed to parse the provided input into a resolvable type: {0}")]
ParsingFailure(#[source] anyhow::Error),
#[error(transparent)]
Generic(#[from] anyhow::Error),
}
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
pub trait Resolver<I: Sync, T> {
async fn resolve(&self, input: &I) -> Result<T>;
}