pub trait PartitionProxyInterface: Send + Sync {
    type UpdateMetadataResponseFut: Future<Output = Result<PartitionUpdateMetadataResult, Error>> + Send;
    // Required method
    fn update_metadata(
        &self,
        payload: PartitionUpdateMetadataRequest,
    ) -> Self::UpdateMetadataResponseFut;
}