pub type FetchFuture = Pin<Box<dyn Future<Output = Result<bool, Box<dyn Error>>> + Send + Sync>>;
A future that returns a boolean.
struct FetchFuture {}