[][src]Struct rquickjs::Array

pub struct Array<'js>(_);

Rust representation of a javascript array. Javascript array's are objects and can be used as such. However arrays in quickjs are optimized when they do not have any holes.

Methods

impl<'js> Array<'js>[src]

pub fn new(ctx: Ctx<'js>) -> Result<Self>[src]

pub fn to_object(self) -> Object<'js>[src]

pub fn from_object(object: Object<'js>) -> Self[src]

pub fn len(&self) -> usize[src]

Get the lenght of the javascript array.

pub fn is_empty(&self) -> bool[src]

Returns wether a javascript array is empty.

pub fn get<V: FromJs<'js>>(&self, idx: u32) -> Result<V>[src]

Get the value at a index in the javascript array.

Trait Implementations

impl<'js> Clone for Array<'js>[src]

impl<'js> Debug for Array<'js>[src]

impl<'js> FromJs<'js> for Array<'js>[src]

impl<'js> PartialEq<Array<'js>> for Array<'js>[src]

impl<'js> StructuralPartialEq for Array<'js>[src]

impl<'js> ToJs<'js> for Array<'js>[src]

Auto Trait Implementations

impl<'js> !RefUnwindSafe for Array<'js>

impl<'js> !Send for Array<'js>

impl<'js> !Sync for Array<'js>

impl<'js> Unpin for Array<'js>

impl<'js> UnwindSafe for Array<'js>

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> 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.