pub trait RecoveryProxyInterface: Send + Sync {
type InitSystemPartitionTableResponseFut: Future<Output = Result<RecoveryInitSystemPartitionTableResult, Error>> + Send;
// Required method
fn init_system_partition_table(
&self,
partitions: &[PartitionInfo],
) -> Self::InitSystemPartitionTableResponseFut;
}