pub trait ResetProxyInterface: Send + Sync {
type ShredEncryptedVolumesResponseFut: Future<Output = Result<ResetShredEncryptedVolumesResult, Error>> + Send;
// Required method
fn shred_encrypted_volumes(&self) -> Self::ShredEncryptedVolumesResponseFut;
}