Trait deno_napi::PendingNapiAsyncWork

source ·
pub trait PendingNapiAsyncWork: FnOnce() + Send + 'static { }

Implementors§

source§

impl<T> PendingNapiAsyncWork for T
where T: FnOnce() + Send + 'static,