Struct stdweb::Array [] [src]

pub struct Array(_);

A type representing a JavaScript array.

Methods

impl Array
[src]

[src]

Returns the number of elements in this particular array.

Trait Implementations

impl<T> TryFrom<Vec<T>> for Array where
    T: JsSerializable, 
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl<'a, T> TryFrom<&'a Vec<T>> for Array where
    T: JsSerializable, 
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl<'a, T> TryFrom<&'a mut Vec<T>> for Array where
    T: JsSerializable, 
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl<'a, T> TryFrom<&'a [T]> for Array where
    T: JsSerializable, 
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl<'a, T> TryFrom<&'a mut [T]> for Array where
    T: JsSerializable, 
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl Clone for Array
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Array
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Debug for Array
[src]

[src]

Formats the value using the given formatter.

impl<V> From<Vec<V>> for Array where
    V: JsSerializable, 
[src]

[src]

Performs the conversion.

impl<'a, V> From<&'a Vec<V>> for Array where
    V: JsSerializable, 
[src]

[src]

Performs the conversion.

impl<'a, V> From<&'a mut Vec<V>> for Array where
    V: JsSerializable, 
[src]

[src]

Performs the conversion.

impl<'a, V> From<&'a [V]> for Array where
    V: JsSerializable, 
[src]

[src]

Performs the conversion.

impl<'a, V> From<&'a mut [V]> for Array where
    V: JsSerializable, 
[src]

[src]

Performs the conversion.