Enum web_sys::ClientType
source · pub enum ClientType {
Window = 0,
Worker = 1,
Sharedworker = 2,
Serviceworker = 3,
All = 4,
// some variants omitted
}
Expand description
The ClientType
enum.
This API requires the following crate features to be activated: ClientType
Variants§
Implementations§
source§impl ClientType
impl ClientType
pub fn from_js_value(obj: &JsValue) -> Option<ClientType>
Trait Implementations§
source§impl Clone for ClientType
impl Clone for ClientType
source§fn clone(&self) -> ClientType
fn clone(&self) -> ClientType
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 ClientType
impl Debug for ClientType
source§impl From<ClientType> for JsValue
impl From<ClientType> for JsValue
source§fn from(obj: ClientType) -> JsValue
fn from(obj: ClientType) -> JsValue
Converts to this type from the input type.
source§impl FromWasmAbi for ClientType
impl FromWasmAbi for ClientType
source§impl IntoWasmAbi for ClientType
impl IntoWasmAbi for ClientType
source§impl OptionFromWasmAbi for ClientType
impl OptionFromWasmAbi for ClientType
source§impl OptionIntoWasmAbi for ClientType
impl OptionIntoWasmAbi for ClientType
source§impl PartialEq for ClientType
impl PartialEq for ClientType
source§fn eq(&self, other: &ClientType) -> bool
fn eq(&self, other: &ClientType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ClientType
impl Eq for ClientType
impl StructuralEq for ClientType
impl StructuralPartialEq for ClientType
Auto Trait Implementations§
impl RefUnwindSafe for ClientType
impl Send for ClientType
impl Sync for ClientType
impl Unpin for ClientType
impl UnwindSafe for ClientType
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
.