underhill_core/emuplat/
non_volatile_store.rsuse vmcore::non_volatile_store::NonVolatileStore;
use vmgs_broker::non_volatile_store::EncryptionNotSupported;
use vmgs_broker::non_volatile_store::VmgsNonVolatileStore;
pub trait VmbsBrokerNonVolatileStore {
fn as_non_volatile_store(
&self,
file_id: vmgs::FileId,
encrypted: bool,
) -> Result<Box<dyn NonVolatileStore>, EncryptionNotSupported>;
}
impl VmbsBrokerNonVolatileStore for vmgs_broker::VmgsClient {
fn as_non_volatile_store(
&self,
file_id: vmgs::FileId,
encrypted: bool,
) -> Result<Box<dyn NonVolatileStore>, EncryptionNotSupported> {
Ok(Box::new(VmgsNonVolatileStore::new(
self.clone(),
file_id,
encrypted,
)?))
}
}