Trait ServiceWorkerContainerMethods
Source pub trait ServiceWorkerContainerMethods<D>{
// Required methods
fn GetController(&self) -> Option<Root<Dom<<D as DomTypes>::ServiceWorker>>>;
fn Register(
&self,
realm: &mut CurrentRealm<'_>,
scriptURL: USVString,
options: &RegistrationOptions,
) -> <<D as DomTypes>::Promise as PromiseHelpers<D>>::StackRoot;
fn GetRegistration(
&self,
realm: &mut CurrentRealm<'_>,
clientURL: USVString,
) -> <<D as DomTypes>::Promise as PromiseHelpers<D>>::StackRoot;
}