pub trait IcdLoaderDeviceProxyInterface: Send + Sync {
type GetIcdListResponseFut: Future<Output = Result<Vec<IcdInfo>, Error>> + Send;
// Required method
fn get_icd_list(&self) -> Self::GetIcdListResponseFut;
}
pub trait IcdLoaderDeviceProxyInterface: Send + Sync {
type GetIcdListResponseFut: Future<Output = Result<Vec<IcdInfo>, Error>> + Send;
// Required method
fn get_icd_list(&self) -> Self::GetIcdListResponseFut;
}