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

Core trait

Required Methods§

Implementations on Foreign Types§

Implementors§