Struct web_sys::HtmlAllCollection 
source · #[repr(transparent)]pub struct HtmlAllCollection { /* private fields */ }Expand description
The HTMLAllCollection object
This API requires the following crate features to be activated: HtmlAllCollection
Implementations§
source§impl HtmlAllCollection
 
impl HtmlAllCollection
sourcepub fn item_with_index(&self, index: u32) -> Option<Node>
 
pub fn item_with_index(&self, index: u32) -> Option<Node>
The item() method
This API requires the following crate features to be activated: HtmlAllCollection, Node
source§impl HtmlAllCollection
 
impl HtmlAllCollection
sourcepub fn item_with_name(&self, name: &str) -> Option<Object>
 
pub fn item_with_name(&self, name: &str) -> Option<Object>
The item() method
This API requires the following crate features to be activated: HtmlAllCollection
source§impl HtmlAllCollection
 
impl HtmlAllCollection
sourcepub fn named_item(&self, name: &str) -> Option<Object>
 
pub fn named_item(&self, name: &str) -> Option<Object>
The namedItem() method
This API requires the following crate features to be activated: HtmlAllCollection
source§impl HtmlAllCollection
 
impl HtmlAllCollection
sourcepub fn get_with_index(&self, index: u32) -> Option<Node>
 
pub fn get_with_index(&self, index: u32) -> Option<Node>
The indexing getter
This API requires the following crate features to be activated: HtmlAllCollection, Node
source§impl HtmlAllCollection
 
impl HtmlAllCollection
sourcepub fn get_with_name(&self, name: &str) -> Option<Object>
 
pub fn get_with_name(&self, name: &str) -> Option<Object>
The indexing getter
This API requires the following crate features to be activated: HtmlAllCollection
Trait Implementations§
source§impl AsRef<JsValue> for HtmlAllCollection
 
impl AsRef<JsValue> for HtmlAllCollection
source§impl AsRef<Object> for HtmlAllCollection
 
impl AsRef<Object> for HtmlAllCollection
source§impl Clone for HtmlAllCollection
 
impl Clone for HtmlAllCollection
source§fn clone(&self) -> HtmlAllCollection
 
fn clone(&self) -> HtmlAllCollection
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for HtmlAllCollection
 
impl Debug for HtmlAllCollection
source§impl From<HtmlAllCollection> for JsValue
 
impl From<HtmlAllCollection> for JsValue
source§fn from(obj: HtmlAllCollection) -> JsValue
 
fn from(obj: HtmlAllCollection) -> JsValue
Converts to this type from the input type.
source§impl From<HtmlAllCollection> for Object
 
impl From<HtmlAllCollection> for Object
source§fn from(obj: HtmlAllCollection) -> Object
 
fn from(obj: HtmlAllCollection) -> Object
Converts to this type from the input type.
source§impl From<JsValue> for HtmlAllCollection
 
impl From<JsValue> for HtmlAllCollection
source§fn from(obj: JsValue) -> HtmlAllCollection
 
fn from(obj: JsValue) -> HtmlAllCollection
Converts to this type from the input type.
source§impl FromWasmAbi for HtmlAllCollection
 
impl FromWasmAbi for HtmlAllCollection
source§impl<'a> IntoWasmAbi for &'a HtmlAllCollection
 
impl<'a> IntoWasmAbi for &'a HtmlAllCollection
source§impl IntoWasmAbi for HtmlAllCollection
 
impl IntoWasmAbi for HtmlAllCollection
source§impl JsCast for HtmlAllCollection
 
impl JsCast for HtmlAllCollection
source§fn instanceof(val: &JsValue) -> bool
 
fn instanceof(val: &JsValue) -> bool
Performs a dynamic 
instanceof check to see whether the JsValue
provided is an instance of this type. Read moresource§fn unchecked_from_js(val: JsValue) -> Self
 
fn unchecked_from_js(val: JsValue) -> Self
source§fn unchecked_from_js_ref(val: &JsValue) -> &Self
 
fn unchecked_from_js_ref(val: &JsValue) -> &Self
source§fn is_instance_of<T>(&self) -> boolwhere
    T: JsCast,
 
fn is_instance_of<T>(&self) -> boolwhere
    T: JsCast,
Test whether this JS value is an instance of the type 
T. Read moresource§fn dyn_into<T>(self) -> Result<T, Self>where
    T: JsCast,
 
fn dyn_into<T>(self) -> Result<T, Self>where
    T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the
target type 
T. Read moresource§fn dyn_ref<T>(&self) -> Option<&T>where
    T: JsCast,
 
fn dyn_ref<T>(&self) -> Option<&T>where
    T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the
target type 
T. Read moresource§fn unchecked_into<T>(self) -> Twhere
    T: JsCast,
 
fn unchecked_into<T>(self) -> Twhere
    T: JsCast,
Performs a zero-cost unchecked cast into the specified type. Read more
source§impl<'a> OptionIntoWasmAbi for &'a HtmlAllCollection
 
impl<'a> OptionIntoWasmAbi for &'a HtmlAllCollection
source§impl RefFromWasmAbi for HtmlAllCollection
 
impl RefFromWasmAbi for HtmlAllCollection
§type Abi = <JsValue as RefFromWasmAbi>::Abi
 
type Abi = <JsValue as RefFromWasmAbi>::Abi
The wasm ABI type references to 
Self are recovered from.§type Anchor = ManuallyDrop<HtmlAllCollection>
 
type Anchor = ManuallyDrop<HtmlAllCollection>
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 moreAuto Trait Implementations§
impl RefUnwindSafe for HtmlAllCollection
impl !Send for HtmlAllCollection
impl !Sync for HtmlAllCollection
impl Unpin for HtmlAllCollection
impl UnwindSafe for HtmlAllCollection
Blanket Implementations§
source§impl<T> ReturnWasmAbi for Twhere
    T: IntoWasmAbi,
 
impl<T> ReturnWasmAbi for Twhere
    T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
 
type Abi = <T as IntoWasmAbi>::Abi
Same as 
IntoWasmAbi::Abisource§fn return_abi(self, extra: &mut dyn Stack) -> <T as ReturnWasmAbi>::Abi
 
fn return_abi(self, extra: &mut dyn Stack) -> <T as ReturnWasmAbi>::Abi
Same as 
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err. Read more