[][src]Struct web_sys::FocusEventInit

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

The FocusEventInit dictionary

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

Methods

impl FocusEventInit[src]

pub fn new() -> FocusEventInit[src]

Construct a new FocusEventInit

This API requires the following crate features to be activated: EventTarget, FocusEventInit, Window

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

Configure the bubbles field of this object

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

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

Configure the cancelable field of this object

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

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

Configure the composed field of this object

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

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

Configure the detail field of this object

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

pub fn view(&mut self, val: Option<&Window>) -> &mut Self[src]

Configure the view field of this object

This API requires the following crate features to be activated: FocusEventInit, Window

pub fn related_target(&mut self, val: Option<&EventTarget>) -> &mut Self[src]

Configure the relatedTarget field of this object

This API requires the following crate features to be activated: EventTarget, FocusEventInit

Trait Implementations

impl AsRef<JsValue> for FocusEventInit[src]

impl From<FocusEventInit> for JsValue[src]

impl Clone for FocusEventInit[src]

impl Debug for FocusEventInit[src]

impl JsCast for FocusEventInit[src]

impl RefFromWasmAbi for FocusEventInit[src]

type Abi = <Object as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<FocusEventInit>

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

type Abi = <Object as FromWasmAbi>::Abi

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

impl IntoWasmAbi for FocusEventInit[src]

type Abi = <Object as IntoWasmAbi>::Abi

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

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

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

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

impl WasmDescribe for FocusEventInit[src]

impl OptionFromWasmAbi for FocusEventInit[src]

impl OptionIntoWasmAbi for FocusEventInit[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

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

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi