[][src]Struct web_sys::FocusEvent

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

The FocusEvent object

MDN Documentation

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

Methods

impl FocusEvent[src]

pub fn new(type_arg: &str) -> Result<FocusEvent, JsValue>[src]

The new FocusEvent(..) constructor, creating a new instance of FocusEvent

MDN Documentation

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

impl FocusEvent[src]

pub fn new_with_focus_event_init_dict(
    type_arg: &str,
    focus_event_init_dict: &FocusEventInit
) -> Result<FocusEvent, JsValue>
[src]

The new FocusEvent(..) constructor, creating a new instance of FocusEvent

MDN Documentation

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

impl FocusEvent[src]

pub fn related_target(&self) -> Option<EventTarget>[src]

The relatedTarget getter

MDN Documentation

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

Methods from Deref<Target = UiEvent>

pub fn init_ui_event(&self, a_type: &str)[src]

The initUIEvent() method

MDN Documentation

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

pub fn init_ui_event_with_a_can_bubble(&self, a_type: &str, a_can_bubble: bool)[src]

The initUIEvent() method

MDN Documentation

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

pub fn init_ui_event_with_a_can_bubble_and_a_cancelable(
    &self,
    a_type: &str,
    a_can_bubble: bool,
    a_cancelable: bool
)
[src]

The initUIEvent() method

MDN Documentation

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

pub fn init_ui_event_with_a_can_bubble_and_a_cancelable_and_a_view(
    &self,
    a_type: &str,
    a_can_bubble: bool,
    a_cancelable: bool,
    a_view: Option<&Window>
)
[src]

The initUIEvent() method

MDN Documentation

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

pub fn init_ui_event_with_a_can_bubble_and_a_cancelable_and_a_view_and_a_detail(
    &self,
    a_type: &str,
    a_can_bubble: bool,
    a_cancelable: bool,
    a_view: Option<&Window>,
    a_detail: i32
)
[src]

The initUIEvent() method

MDN Documentation

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

pub fn view(&self) -> Option<Window>[src]

The view getter

MDN Documentation

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

pub fn detail(&self) -> i32[src]

The detail getter

MDN Documentation

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

pub fn layer_x(&self) -> i32[src]

The layerX getter

MDN Documentation

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

pub fn layer_y(&self) -> i32[src]

The layerY getter

MDN Documentation

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

pub fn page_x(&self) -> i32[src]

The pageX getter

MDN Documentation

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

pub fn page_y(&self) -> i32[src]

The pageY getter

MDN Documentation

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

pub fn which(&self) -> u32[src]

The which getter

MDN Documentation

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

pub fn range_parent(&self) -> Option<Node>[src]

The rangeParent getter

MDN Documentation

This API requires the following crate features to be activated: Node, UiEvent

pub fn range_offset(&self) -> i32[src]

The rangeOffset getter

MDN Documentation

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

Trait Implementations

impl AsRef<JsValue> for FocusEvent[src]

impl AsRef<FocusEvent> for FocusEvent[src]

impl AsRef<UiEvent> for FocusEvent[src]

impl AsRef<Event> for FocusEvent[src]

impl AsRef<Object> for FocusEvent[src]

impl From<JsValue> for FocusEvent[src]

impl From<FocusEvent> for JsValue[src]

impl From<FocusEvent> for UiEvent[src]

impl From<FocusEvent> for Event[src]

impl From<FocusEvent> for Object[src]

impl Clone for FocusEvent[src]

impl Eq for FocusEvent[src]

impl PartialEq<FocusEvent> for FocusEvent[src]

impl Debug for FocusEvent[src]

impl Deref for FocusEvent[src]

type Target = UiEvent

The resulting type after dereferencing.

impl StructuralPartialEq for FocusEvent[src]

impl StructuralEq for FocusEvent[src]

impl JsCast for FocusEvent[src]

impl RefFromWasmAbi for FocusEvent[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<FocusEvent>

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

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

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

impl WasmDescribe for FocusEvent[src]

impl OptionFromWasmAbi for FocusEvent[src]

impl OptionIntoWasmAbi for FocusEvent[src]

impl<'a> OptionIntoWasmAbi for &'a FocusEvent[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