Struct rayon_core::Configuration [−][src]
👎 Deprecated:
Use ThreadPoolBuilder
Contains the rayon thread pool configuration. Use ThreadPoolBuilder
instead.
Implementations
impl Configuration
[src][−]
pub fn new() -> Configuration
[src][−]
Creates and return a valid rayon thread pool configuration, but does not initialize it.
pub fn build(self) -> Result<ThreadPool, Box<dyn Error + 'static>>
[src][−]
Deprecated in favor of ThreadPoolBuilder::build
.
pub fn thread_name<F>(self, closure: F) -> Self where
F: FnMut(usize) -> String + 'static,
[src][−]
F: FnMut(usize) -> String + 'static,
Deprecated in favor of ThreadPoolBuilder::thread_name
.
pub fn num_threads(self, num_threads: usize) -> Configuration
[src][−]
Deprecated in favor of ThreadPoolBuilder::num_threads
.
pub fn panic_handler<H>(self, panic_handler: H) -> Configuration where
H: Fn(Box<dyn Any + Send>) + Send + Sync + 'static,
[src][−]
H: Fn(Box<dyn Any + Send>) + Send + Sync + 'static,
Deprecated in favor of ThreadPoolBuilder::panic_handler
.
pub fn stack_size(self, stack_size: usize) -> Self
[src][−]
Deprecated in favor of ThreadPoolBuilder::stack_size
.
pub fn breadth_first(self) -> Self
[src][−]
Deprecated in favor of ThreadPoolBuilder::breadth_first
.
pub fn start_handler<H>(self, start_handler: H) -> Configuration where
H: Fn(usize) + Send + Sync + 'static,
[src][−]
H: Fn(usize) + Send + Sync + 'static,
Deprecated in favor of ThreadPoolBuilder::start_handler
.
pub fn exit_handler<H>(self, exit_handler: H) -> Configuration where
H: Fn(usize) + Send + Sync + 'static,
[src][−]
H: Fn(usize) + Send + Sync + 'static,
Deprecated in favor of ThreadPoolBuilder::exit_handler
.
Trait Implementations
impl Debug for Configuration
[src][+]
impl Default for Configuration
[src][+]
Auto Trait Implementations
impl !RefUnwindSafe for Configuration
impl !Send for Configuration
impl !Sync for Configuration
impl Unpin for Configuration
impl !UnwindSafe for Configuration
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Pointable for T
[src][+]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,