1 2 3 4 5 6 7 8
use crate::ChainProcess; pub mod error; pub trait Chain { type Previous; fn proc(p: Self::Previous) -> impl Future<Output = ChainProcess> + Send; }