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§
Sourcefn ream_proxy(&mut self) -> ParallelProxy<E>
fn ream_proxy(&mut self) -> ParallelProxy<E>
Get a proxy to the ream.
This allows adding pages from inside sketches.
Sourcefn add_page_with<S, I>(&mut self, input: I)
fn add_page_with<S, I>(&mut self, input: I)
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.