[][src]Struct web_sys::ListBoxObject

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

The ListBoxObject object

MDN Documentation

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

Methods

impl ListBoxObject[src]

pub fn ensure_index_is_visible(&self, row_index: i32)[src]

The ensureIndexIsVisible() method

MDN Documentation

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

impl ListBoxObject[src]

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

The getIndexOfFirstVisibleRow() method

MDN Documentation

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

impl ListBoxObject[src]

pub fn get_index_of_item(&self, item: &Element) -> i32[src]

The getIndexOfItem() method

MDN Documentation

This API requires the following crate features to be activated: Element, ListBoxObject

impl ListBoxObject[src]

pub fn get_item_at_index(&self, index: i32) -> Option<Element>[src]

The getItemAtIndex() method

MDN Documentation

This API requires the following crate features to be activated: Element, ListBoxObject

impl ListBoxObject[src]

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

The getNumberOfVisibleRows() method

MDN Documentation

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

impl ListBoxObject[src]

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

The getRowCount() method

MDN Documentation

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

impl ListBoxObject[src]

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

The getRowHeight() method

MDN Documentation

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

impl ListBoxObject[src]

pub fn scroll_by_lines(&self, num_lines: i32)[src]

The scrollByLines() method

MDN Documentation

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

impl ListBoxObject[src]

pub fn scroll_to_index(&self, row_index: i32)[src]

The scrollToIndex() method

MDN Documentation

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

Trait Implementations

impl AsRef<JsValue> for ListBoxObject[src]

impl AsRef<ListBoxObject> for ListBoxObject[src]

impl AsRef<Object> for ListBoxObject[src]

impl Clone for ListBoxObject[src]

impl Debug for ListBoxObject[src]

impl Deref for ListBoxObject[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for ListBoxObject[src]

impl From<JsValue> for ListBoxObject[src]

impl From<ListBoxObject> for JsValue[src]

impl From<ListBoxObject> for Object[src]

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

impl OptionFromWasmAbi for ListBoxObject[src]

impl OptionIntoWasmAbi for ListBoxObject[src]

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

impl PartialEq<ListBoxObject> for ListBoxObject[src]

impl RefFromWasmAbi for ListBoxObject[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<ListBoxObject>

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

impl StructuralPartialEq for ListBoxObject[src]

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