Module jpegxl_rs::parallel[][src]

Expand description

Parallel runner interface

Example

use jpegxl_rs::{decoder_builder, parallel::*};
// Use the default C++ Threadpool runner:
let mut parallel_runner = ThreadsRunner::default();
let mut decoder = decoder_builder().parallel_runner(&parallel_runner).build()?;

Re-exports

pub use threads_runner::*;
threads

Modules

Wrapper for default threadpool implementation with C++ standard library

Traits

JPEG XL Parallel Runner

Type Definitions

Parallel runner initialization callback type

Parallel runner return code

Parallel runner data processing callback type