Skip to main content

ChildIteratorProxyInterface

Trait ChildIteratorProxyInterface 

Source
pub trait ChildIteratorProxyInterface: Send + Sync {
    type NextResponseFut: Future<Output = Result<Vec<ChildRef>, Error>> + Send;

    // Required method
    fn next(&self) -> Self::NextResponseFut;
}

Required Associated Types§

Source

type NextResponseFut: Future<Output = Result<Vec<ChildRef>, Error>> + Send

Required Methods§

Source

fn next(&self) -> Self::NextResponseFut

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§