pub trait Build<T, E> {
    type Result: Future<Item = T, Error = E>;

    fn build(self) -> Self::Result;
}

Required Associated Types

Required Methods

Implementors