pub trait SnapshotSinkV1ProxyInterface: Send + Sync {
    // Required method
    fn store_named_snapshot(
        &self,
        snapshot_name: &str,
        allocations_vmo_snapshot: Vmo
    ) -> Result<(), Error>;
}

Required Methods§

source

fn store_named_snapshot( &self, snapshot_name: &str, allocations_vmo_snapshot: Vmo ) -> Result<(), Error>

Implementors§