Trait rquickjs_core::MultiWith[][src]

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.

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