Trait SnapshotOperations
Source pub trait SnapshotOperations {
// Required methods
fn create_snapshot<'life0, 'life1, 'async_trait>(
&'life0 self,
params: &'life1 SnapshotCreateParams,
) -> Pin<Box<dyn Future<Output = Result<(), FirecrackerError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn load_snapshot<'life0, 'life1, 'async_trait>(
&'life0 self,
params: &'life1 SnapshotLoadParams,
) -> Pin<Box<dyn Future<Output = Result<(), FirecrackerError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}