use RuntimeTrait;
use ;
/// A [`RuntimeTrait`] that can fan a workload out across one OS thread per core, each driving its
/// own single-threaded executor.
///
/// This is the capability behind SO_REUSEPORT thread-per-core deployment: a server binds one
/// listener per worker into a kernel reuseport group and runs each listener's accept loop on the
/// core the kernel delivered the connection to, with no cross-core migration. Runtimes opt into
/// this by implementing the trait; the presence of an impl is what makes
/// `ListenerConfig::bind_reuseport_*` available.