pub trait Registrable {
    type Registrar;

    fn registrar() -> Self::Registrar;
}
Expand description

A trait to enable public workers being registered in a web worker.

Required Associated Types

Registrar Type.

Required Methods

Creates a registrar for the current worker.

Implementors