Enum web_sys::ServiceWorkerState
source · pub enum ServiceWorkerState {
Parsed = 0,
Installing = 1,
Installed = 2,
Activating = 3,
Activated = 4,
Redundant = 5,
// some variants omitted
}
Expand description
The ServiceWorkerState
enum.
This API requires the following crate features to be activated: ServiceWorkerState
Variants§
Implementations§
source§impl ServiceWorkerState
impl ServiceWorkerState
pub fn from_js_value(obj: &JsValue) -> Option<ServiceWorkerState>
Trait Implementations§
source§impl Clone for ServiceWorkerState
impl Clone for ServiceWorkerState
source§fn clone(&self) -> ServiceWorkerState
fn clone(&self) -> ServiceWorkerState
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ServiceWorkerState
impl Debug for ServiceWorkerState
source§impl From<ServiceWorkerState> for JsValue
impl From<ServiceWorkerState> for JsValue
source§fn from(obj: ServiceWorkerState) -> JsValue
fn from(obj: ServiceWorkerState) -> JsValue
Converts to this type from the input type.
source§impl FromWasmAbi for ServiceWorkerState
impl FromWasmAbi for ServiceWorkerState
source§impl IntoWasmAbi for ServiceWorkerState
impl IntoWasmAbi for ServiceWorkerState
source§impl PartialEq for ServiceWorkerState
impl PartialEq for ServiceWorkerState
source§fn eq(&self, other: &ServiceWorkerState) -> bool
fn eq(&self, other: &ServiceWorkerState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ServiceWorkerState
impl Eq for ServiceWorkerState
impl StructuralEq for ServiceWorkerState
impl StructuralPartialEq for ServiceWorkerState
Auto Trait Implementations§
impl RefUnwindSafe for ServiceWorkerState
impl Send for ServiceWorkerState
impl Sync for ServiceWorkerState
impl Unpin for ServiceWorkerState
impl UnwindSafe for ServiceWorkerState
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.