maxcountryman_web_sys/features/
gen_ServiceWorkerState.rs

1#![allow(unused_imports)]
2use wasm_bindgen::prelude::*;
3#[wasm_bindgen]
4#[doc = "The `ServiceWorkerState` enum."]
5#[doc = ""]
6#[doc = "*This API requires the following crate features to be activated: `ServiceWorkerState`*"]
7#[derive(Debug, Clone, Copy, PartialEq, Eq)]
8pub enum ServiceWorkerState {
9    Parsed = "parsed",
10    Installing = "installing",
11    Installed = "installed",
12    Activating = "activating",
13    Activated = "activated",
14    Redundant = "redundant",
15}