hcl_compat_uefi_nvram_storage/
storage_backend.rsuse thiserror::Error;
#[derive(Error, Debug)]
#[error("error accessing nvram storage backend")]
pub struct StorageBackendError(#[from] anyhow::Error);
impl StorageBackendError {
pub fn new(e: impl Into<anyhow::Error>) -> StorageBackendError {
Self(e.into())
}
}
#[async_trait::async_trait]
pub trait StorageBackend: Send + Sync {
async fn persist(&mut self, data: Vec<u8>) -> Result<(), StorageBackendError>;
async fn restore(&mut self) -> Result<Option<Vec<u8>>, StorageBackendError>;
}
#[async_trait::async_trait]
impl StorageBackend for Box<dyn StorageBackend> {
async fn persist(&mut self, data: Vec<u8>) -> Result<(), StorageBackendError> {
(**self).persist(data).await
}
async fn restore(&mut self) -> Result<Option<Vec<u8>>, StorageBackendError> {
(**self).restore().await
}
}
#[async_trait::async_trait]
impl<T> StorageBackend for &mut T
where
T: StorageBackend,
{
async fn persist(&mut self, data: Vec<u8>) -> Result<(), StorageBackendError> {
(**self).persist(data).await
}
async fn restore(&mut self) -> Result<Option<Vec<u8>>, StorageBackendError> {
(**self).restore().await
}
}