Trait MmdsOperations
Source pub trait MmdsOperations {
// Required methods
fn put_mmds<'life0, 'async_trait>(
&'life0 self,
data: Value,
) -> Pin<Box<dyn Future<Output = Result<(), FirecrackerError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn patch_mmds<'life0, 'async_trait>(
&'life0 self,
data: Value,
) -> Pin<Box<dyn Future<Output = Result<(), FirecrackerError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_mmds<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Value, FirecrackerError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}