[][src]Struct web_sys::PresentationConnectionCloseEventInit

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

The PresentationConnectionCloseEventInit dictionary.

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

Implementations

impl PresentationConnectionCloseEventInit[src]

pub fn new(reason: PresentationConnectionClosedReason) -> Self[src]

Construct a new PresentationConnectionCloseEventInit.

This API requires the following crate features to be activated: PresentationConnectionCloseEventInit, PresentationConnectionClosedReason

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: PresentationConnectionCloseEventInit

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: PresentationConnectionCloseEventInit

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: PresentationConnectionCloseEventInit

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

Change the message field of this object.

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

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

Change the reason field of this object.

This API requires the following crate features to be activated: PresentationConnectionCloseEventInit, PresentationConnectionClosedReason

Trait Implementations

impl AsRef<JsValue> for PresentationConnectionCloseEventInit[src]

impl AsRef<Object> for PresentationConnectionCloseEventInit[src]

impl AsRef<PresentationConnectionCloseEventInit> for PresentationConnectionCloseEventInit[src]

impl Clone for PresentationConnectionCloseEventInit[src]

impl Debug for PresentationConnectionCloseEventInit[src]

impl Deref for PresentationConnectionCloseEventInit[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for PresentationConnectionCloseEventInit[src]

impl From<JsValue> for PresentationConnectionCloseEventInit[src]

impl From<PresentationConnectionCloseEventInit> for JsValue[src]

impl From<PresentationConnectionCloseEventInit> for Object[src]

impl FromWasmAbi for PresentationConnectionCloseEventInit[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 PresentationConnectionCloseEventInit[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 PresentationConnectionCloseEventInit[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 PresentationConnectionCloseEventInit[src]

impl OptionFromWasmAbi for PresentationConnectionCloseEventInit[src]

impl OptionIntoWasmAbi for PresentationConnectionCloseEventInit[src]

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

impl PartialEq<PresentationConnectionCloseEventInit> for PresentationConnectionCloseEventInit[src]

impl RefFromWasmAbi for PresentationConnectionCloseEventInit[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<PresentationConnectionCloseEventInit>

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 PresentationConnectionCloseEventInit[src]

impl StructuralPartialEq for PresentationConnectionCloseEventInit[src]

impl WasmDescribe for PresentationConnectionCloseEventInit[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.