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