Struct basic_dsp_vector::MultiCoreSettings[][src]

#[repr(C)]
pub struct MultiCoreSettings { pub core_limit: usize, }

Holds parameters which specify how multiple cores are used to execute an operation.

Fields

All operations will be limited to not create more threads than specified here

Methods

impl MultiCoreSettings
[src]

Creates multi core settings with default values

Creates multi core settings so that no thread will be spawned.

Creates multi core so that threads will be spawned if this appears to be beneficial.

Creates multi core settings with the given values.

Trait Implementations

impl Debug for MultiCoreSettings
[src]

Formats the value using the given formatter. Read more

impl Copy for MultiCoreSettings
[src]

impl Clone for MultiCoreSettings
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations