ParallelPagesExt

Trait ParallelPagesExt 

Source
pub trait ParallelPagesExt<E>
where E: Environment,
{ // Required methods fn ream_proxy(&mut self) -> ParallelProxy<E>; fn add_page<S>(&mut self) where S: Sketch<Env = E> + Setup + 'static; fn add_page_with<S, I>(&mut self, input: I) where S: Sketch<Env = E> + Setup<I> + 'static, I: Send + 'static; }
Expand description

Extension trait for parallel ream.

Required Methods§

Source

fn ream_proxy(&mut self) -> ParallelProxy<E>

Get a proxy to the ream.

This allows adding pages from inside sketches.

Source

fn add_page<S>(&mut self)
where S: Sketch<Env = E> + Setup + 'static,

Add a page.

Source

fn add_page_with<S, I>(&mut self, input: I)
where S: Sketch<Env = E> + Setup<I> + 'static, I: Send + 'static,

Add a page with input data.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§