[][src]Struct web_sys::NotificationEventInit

#[repr(transparent)]pub struct NotificationEventInit { /* fields omitted */ }

The NotificationEventInit dictionary.

This API requires the following crate features to be activated: NotificationEventInit

Methods

impl NotificationEventInit[src]

pub fn new(notification: &Notification) -> Self[src]

Construct a new NotificationEventInit.

This API requires the following crate features to be activated: Notification, NotificationEventInit

pub fn bubbles(&mut self, val: bool) -> &mut Self[src]

Change the bubbles field of this object.

This API requires the following crate features to be activated: NotificationEventInit

pub fn cancelable(&mut self, val: bool) -> &mut Self[src]

Change the cancelable field of this object.

This API requires the following crate features to be activated: NotificationEventInit

pub fn composed(&mut self, val: bool) -> &mut Self[src]

Change the composed field of this object.

This API requires the following crate features to be activated: NotificationEventInit

pub fn notification(&mut self, val: &Notification) -> &mut Self[src]

Change the notification field of this object.

This API requires the following crate features to be activated: Notification, NotificationEventInit

Trait Implementations

impl AsRef<JsValue> for NotificationEventInit[src]

impl AsRef<NotificationEventInit> for NotificationEventInit[src]

impl AsRef<Object> for NotificationEventInit[src]

impl Clone for NotificationEventInit[src]

impl Debug for NotificationEventInit[src]

impl Deref for NotificationEventInit[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for NotificationEventInit[src]

impl From<JsValue> for NotificationEventInit[src]

impl From<NotificationEventInit> for JsValue[src]

impl From<NotificationEventInit> for Object[src]

impl FromWasmAbi for NotificationEventInit[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for NotificationEventInit[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a NotificationEventInit[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for NotificationEventInit[src]

impl OptionFromWasmAbi for NotificationEventInit[src]

impl OptionIntoWasmAbi for NotificationEventInit[src]

impl<'a> OptionIntoWasmAbi for &'a NotificationEventInit[src]

impl PartialEq<NotificationEventInit> for NotificationEventInit[src]

impl RefFromWasmAbi for NotificationEventInit[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<NotificationEventInit>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl StructuralEq for NotificationEventInit[src]

impl StructuralPartialEq for NotificationEventInit[src]

impl WasmDescribe for NotificationEventInit[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.