pub type TickFn = Box<dyn Fn() -> Pin<Box<dyn Future<Output = Result<(), String>> + Send>> + Send + Sync>;Expand description
Boxed async tick function: returns Ok(()) on success, Err on failure.
Aliased Typeยง
pub struct TickFn(/* private fields */);