pub type SpawnFn = Box<dyn Fn() -> Pin<Box<dyn Future<Output = SageResult<()>> + Send>> + Send>;
A spawn function that creates an agent and returns its join handle.
pub struct SpawnFn(/* private fields */);