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