Type Alias ChainEventResolver
pub type ChainEventResolver<ChainErr, WaitErr> = (Pin<Box<dyn Future<Output = Result<ChainEvent, EitherErr<ChainErr, WaitErr>>> + Send>>, AbortHandle);Expand description
Future that resolves when a ChainEvent is resolved, times out, or is aborted
via the associated abort handle.