pub fn spawn_named<T, F>(name: &str, f: F) -> Option<JoinHandle<T>>Expand description
Spawn f on a named thread. On failure (e.g. PID/thread limit), log a warning
and return None so callers can fall back to inline work or skip the feature.
pub fn spawn_named<T, F>(name: &str, f: F) -> Option<JoinHandle<T>>Spawn f on a named thread. On failure (e.g. PID/thread limit), log a warning
and return None so callers can fall back to inline work or skip the feature.