pub trait AsyncComponent: Unpin {
    fn poll_next(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>
    ) -> Poll<ComponentPollFlags>; }

Required Methods§

Implementations on Foreign Types§

Implementors§