pub trait Joinable {
    type Output;

    fn join(self) -> Eventual<Self::Output>;
}
Expand description

Indicates the type can be used with the join method. Not intended to be used directly.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors