pub trait MultiWith<'js> {
    type Arg;

    fn with<R, F: FnOnce(Self::Arg) -> R>(self, f: F) -> R;
}
Expand description

A trait for using multiple contexts at the same time.

Required Associated Types

Required Methods

Use multiple contexts together.

Panic

This function will panic if any of the contexts are of seperate runtimes.

Implementations on Foreign Types

Implementors