Struct async_global_executor::GlobalExecutorConfig [−][src]
pub struct GlobalExecutorConfig { /* fields omitted */ }
Configuration to init the thread pool for the multi-threaded global executor.
Implementations
impl GlobalExecutorConfig
[src]
impl GlobalExecutorConfig
[src]pub fn with_env_var(self, env_var: &'static str) -> Self
[src]
Use the specified environment variable to find the number of threads to spawn.
pub fn with_min_threads(self, min_threads: usize) -> Self
[src]
Use the specified value as the minimum number of threads.
pub fn with_max_threads(self, max_threads: usize) -> Self
[src]
Use the specified value as the maximum number of threads.
pub fn with_thread_name_fn(
self,
thread_name_fn: impl Fn() -> String + Send + Sync + 'static
) -> Self
[src]
self,
thread_name_fn: impl Fn() -> String + Send + Sync + 'static
) -> Self
Use the specified prefix to name the threads.
Trait Implementations
impl Default for GlobalExecutorConfig
[src]
impl Default for GlobalExecutorConfig
[src]