[][src]Struct rayon::ThreadBuilder

pub struct ThreadBuilder { /* fields omitted */ }

Thread builder used for customization via ThreadPoolBuilder::spawn_handler.

Implementations

impl ThreadBuilder[src]

pub fn index(&self) -> usize[src]

Gets the index of this thread in the pool, within 0..num_threads.

pub fn name(&self) -> Option<&str>[src]

Gets the string that was specified by ThreadPoolBuilder::name().

pub fn stack_size(&self) -> Option<usize>[src]

Gets the value that was specified by ThreadPoolBuilder::stack_size().

pub fn run(self)[src]

Executes the main loop for this thread. This will not return until the thread pool is dropped.

Trait Implementations

impl Debug for ThreadBuilder[src]

Auto Trait Implementations

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> Pointable for T

type Init = T

The type for initializers.

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.