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