Struct jobsys::JobSystem[][src]

pub struct JobSystem { /* fields omitted */ }

Work Stealing JobSystem.

Implementations

impl JobSystem[src]

pub fn new(thread_count: usize, job_capacity: usize) -> Result<Self, Error>[src]

Create a new instance of a JobSystem. To create jobs, please create a new instance of a JobScope.

  • thread_count - Number of worker threads.
  • job_capacity - Maximum number of jobs the system can allocate. If this is not a power of 2 it will be rounded up to the next value which is a power of 2.

Trait Implementations

impl Drop for JobSystem[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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,