pub trait ServiceWorkerRegistrationMethods {
    // Required methods
    fn GetInstalling(&self) -> Option<Root<Dom<ServiceWorker>>>;
    fn GetWaiting(&self) -> Option<Root<Dom<ServiceWorker>>>;
    fn GetActive(&self) -> Option<Root<Dom<ServiceWorker>>>;
    fn NavigationPreload(&self) -> Root<Dom<NavigationPreloadManager>>;
    fn Scope(&self) -> USVString;
    fn UpdateViaCache(&self) -> ServiceWorkerUpdateViaCache;
}

Required Methods§

Implementors§