pub trait ExtendedAttributeIteratorProxyInterface: Send + Sync {
type GetNextResponseFut: Future<Output = Result<ExtendedAttributeIteratorGetNextResult, Error>> + Send;
// Required method
fn get_next(&self) -> Self::GetNextResponseFut;
}Required Associated Types§
type GetNextResponseFut: Future<Output = Result<ExtendedAttributeIteratorGetNextResult, Error>> + Send
Required Methods§
fn get_next(&self) -> Self::GetNextResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".