pub trait ScanResultIteratorProxyInterface: Send + Sync {
type GetNextResponseFut: Future<Output = Result<ScanResultIteratorGetNextResult, Error>> + Send;
// Required method
fn get_next(&self) -> Self::GetNextResponseFut;
}
pub trait ScanResultIteratorProxyInterface: Send + Sync {
type GetNextResponseFut: Future<Output = Result<ScanResultIteratorGetNextResult, Error>> + Send;
// Required method
fn get_next(&self) -> Self::GetNextResponseFut;
}