pub trait EnergyScanResultStreamProxyInterface: Send + Sync {
type NextResponseFut: Future<Output = Result<Vec<EnergyScanResult>, Error>> + Send;
// Required method
fn next(&self) -> Self::NextResponseFut;
}
pub trait EnergyScanResultStreamProxyInterface: Send + Sync {
type NextResponseFut: Future<Output = Result<Vec<EnergyScanResult>, Error>> + Send;
// Required method
fn next(&self) -> Self::NextResponseFut;
}