noem 0.1.0

Resend mail fetched by different strategies to different places
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod strategies;
use futures::{Future, Stream};

pub trait Fetcher {
    type Error;
    type Output;

    fn fetch(
        &self,
    ) -> impl Future<
        Output = Result<impl Stream<Item = Result<Option<Self::Output>, Self::Error>>, Self::Error>,
    >;
}