pub trait DeviceIdProviderProxyInterface: Send + Sync { type GetIdResponseFut: Future<Output = Result<String, Error>> + Send; // Required method fn get_id(&self) -> Self::GetIdResponseFut; }