[][src]Struct web_sys::SvgLengthList

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

The SvgLengthList class.

MDN Documentation

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

Methods

impl SvgLengthList[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: SvgLengthList

impl SvgLengthList[src]

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

The appendItem() method.

MDN Documentation

This API requires the following crate features to be activated: SvgLength, SvgLengthList

impl SvgLengthList[src]

pub fn clear(&self) -> Result<(), JsValue>[src]

The clear() method.

MDN Documentation

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

impl SvgLengthList[src]

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

The getItem() method.

MDN Documentation

This API requires the following crate features to be activated: SvgLength, SvgLengthList

impl SvgLengthList[src]

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

The initialize() method.

MDN Documentation

This API requires the following crate features to be activated: SvgLength, SvgLengthList

impl SvgLengthList[src]

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

The insertItemBefore() method.

MDN Documentation

This API requires the following crate features to be activated: SvgLength, SvgLengthList

impl SvgLengthList[src]

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

The removeItem() method.

MDN Documentation

This API requires the following crate features to be activated: SvgLength, SvgLengthList

impl SvgLengthList[src]

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

The replaceItem() method.

MDN Documentation

This API requires the following crate features to be activated: SvgLength, SvgLengthList

impl SvgLengthList[src]

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

Indexing getter.

This API requires the following crate features to be activated: SvgLength, SvgLengthList

Trait Implementations

impl AsRef<JsValue> for SvgLengthList[src]

impl AsRef<Object> for SvgLengthList[src]

impl AsRef<SvgLengthList> for SvgLengthList[src]

impl Clone for SvgLengthList[src]

impl Debug for SvgLengthList[src]

impl Deref for SvgLengthList[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for SvgLengthList[src]

impl From<JsValue> for SvgLengthList[src]

impl From<SvgLengthList> for JsValue[src]

impl From<SvgLengthList> for Object[src]

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

impl OptionFromWasmAbi for SvgLengthList[src]

impl OptionIntoWasmAbi for SvgLengthList[src]

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

impl PartialEq<SvgLengthList> for SvgLengthList[src]

impl RefFromWasmAbi for SvgLengthList[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<SvgLengthList>

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

impl StructuralPartialEq for SvgLengthList[src]

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