[][src]Struct web_sys::SvgStringList

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

The SvgStringList class.

MDN Documentation

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

Implementations

impl SvgStringList[src]

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

Getter for the length field of this object.

MDN Documentation

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

impl SvgStringList[src]

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

Getter for the numberOfItems field of this object.

MDN Documentation

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

impl SvgStringList[src]

pub fn append_item(&self, new_item: &str) -> Result<String, JsValue>[src]

The appendItem() method.

MDN Documentation

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

impl SvgStringList[src]

pub fn clear(&self)[src]

The clear() method.

MDN Documentation

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

impl SvgStringList[src]

pub fn get_item(&self, index: u32) -> Result<String, JsValue>[src]

The getItem() method.

MDN Documentation

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

impl SvgStringList[src]

pub fn initialize(&self, new_item: &str) -> Result<String, JsValue>[src]

The initialize() method.

MDN Documentation

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

impl SvgStringList[src]

pub fn insert_item_before(
    &self,
    new_item: &str,
    index: u32
) -> Result<String, JsValue>
[src]

The insertItemBefore() method.

MDN Documentation

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

impl SvgStringList[src]

pub fn remove_item(&self, index: u32) -> Result<String, JsValue>[src]

The removeItem() method.

MDN Documentation

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

impl SvgStringList[src]

pub fn replace_item(
    &self,
    new_item: &str,
    index: u32
) -> Result<String, JsValue>
[src]

The replaceItem() method.

MDN Documentation

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

impl SvgStringList[src]

pub fn get(&self, index: u32) -> Option<String>[src]

Indexing getter.

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

Trait Implementations

impl AsRef<JsValue> for SvgStringList[src]

impl AsRef<Object> for SvgStringList[src]

impl AsRef<SvgStringList> for SvgStringList[src]

impl Clone for SvgStringList[src]

impl Debug for SvgStringList[src]

impl Deref for SvgStringList[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for SvgStringList[src]

impl From<JsValue> for SvgStringList[src]

impl From<SvgStringList> for JsValue[src]

impl From<SvgStringList> for Object[src]

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

impl OptionFromWasmAbi for SvgStringList[src]

impl OptionIntoWasmAbi for SvgStringList[src]

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

impl PartialEq<SvgStringList> for SvgStringList[src]

impl RefFromWasmAbi for SvgStringList[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<SvgStringList>

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

impl StructuralPartialEq for SvgStringList[src]

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