pub trait AdminProxyInterface: Send + Sync {
type ShredDataVolumeResponseFut: Future<Output = Result<AdminShredDataVolumeResult, Error>> + Send;
// Required method
fn shred_data_volume(&self) -> Self::ShredDataVolumeResponseFut;
}Required Associated Types§
type ShredDataVolumeResponseFut: Future<Output = Result<AdminShredDataVolumeResult, Error>> + Send
Required Methods§
fn shred_data_volume(&self) -> Self::ShredDataVolumeResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".