pub trait AdminProxyInterface: Send + Sync {
type ShredDataVolumeResponseFut: Future<Output = Result<AdminShredDataVolumeResult, Error>> + Send;
// Required method
fn shred_data_volume(&self) -> Self::ShredDataVolumeResponseFut;
}pub trait AdminProxyInterface: Send + Sync {
type ShredDataVolumeResponseFut: Future<Output = Result<AdminShredDataVolumeResult, Error>> + Send;
// Required method
fn shred_data_volume(&self) -> Self::ShredDataVolumeResponseFut;
}