Struct wasm_mt_pool::ThreadPool[][src]

pub struct ThreadPool(_);

Implementations

impl ThreadPool[src]

pub fn new(size: usize, pkg_js_uri: &str) -> Self[src]

pub fn new_with_arraybuffers(
    size: usize,
    ab_js: ArrayBuffer,
    ab_wasm: ArrayBuffer
) -> Self
[src]

pub fn set_ab_init(&self, ab: ArrayBuffer)[src]

pub async fn init(&self) -> Result<&Self, JsValue>[src]

pub async fn and_init(self) -> Result<Self, JsValue>[src]

pub fn count_pending_jobs(&self) -> usize[src]

pub fn exec<F>(&self, job: F) where
    F: MtClosure
[src]

pub fn exec_async<F, T>(&self, job: F) where
    F: MtAsyncClosure<T>, 
[src]

pub fn exec_with_cb<F, G>(&self, job: F, cb: G) where
    F: MtClosure,
    G: PoolCallback, 
[src]

pub fn exec_async_with_cb<F, T, G>(&self, job: F, cb: G) where
    F: MtAsyncClosure<T>,
    G: PoolCallback, 
[src]

pub fn exec_js(&self, js: &str)[src]

pub fn exec_js_async(&self, js: &str)[src]

pub fn exec_js_with_cb<G>(&self, js: &str, cb: G) where
    G: PoolCallback, 
[src]

pub fn exec_js_async_with_cb<G>(&self, js: &str, cb: G) where
    G: PoolCallback, 
[src]

Trait Implementations

impl Drop for ThreadPool[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Type for T where
    T: ?Sized
[src]

impl<T> Type for T[src]

type Meta = Concrete

Type of metadata for type.