pub type AsyncGenerator<T> = Pin<Box<dyn Fn(u64) -> Pin<Box<dyn Future<Output = T> + Send>> + Send + Sync>>;
A channel generator for types that need asynchronous execution
struct AsyncGenerator<T> {}