pub trait RegistryProxyInterface: Send + Sync {
// Required method
fn register_v1(
&self,
process: Process,
allocations_vmo: Vmo,
resources_vmo: Vmo,
snapshot_sink: ServerEnd<SnapshotSinkV1Marker>,
) -> Result<(), Error>;
}