async fn run_accept_loop<'a, T: 'a>(
listener: Box<dyn PtListener>,
rh: Arc<impl RequestHandler<T> + 'static>,
conn_limit: Option<usize>,
settings: RpcSettings,
ex: Arc<Executor<'a>>,
) -> Result<()>Expand description
Wrapper function around accept() to take the incoming connection and
pass it forward.