pub trait TryFuture {
    type Ok;
    type Error: Into<Error>;

    fn poll_ready(
        &mut self,
        input: &mut Input<'_>
    ) -> Poll<Self::Ok, Self::Error>; }
Expand description

A trait that abstracts the general asynchronous tasks within the framework.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors