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]

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]

Use the specified prefix to name the threads.

Trait Implementations

impl Debug for GlobalExecutorConfig[src]

impl Default for GlobalExecutorConfig[src]

Auto Trait Implementations

impl !RefUnwindSafe for GlobalExecutorConfig

impl Send for GlobalExecutorConfig

impl Sync for GlobalExecutorConfig

impl Unpin for GlobalExecutorConfig

impl !UnwindSafe for GlobalExecutorConfig

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.