Trait rquickjs_core::IteratorJs[][src]

pub trait IteratorJs<'js, A> {
    fn collect_js<B>(self, ctx: Ctx<'js>) -> Result<B>
    where
        B: FromIteratorJs<'js, A>
; }

The Rust's Iterator trait extension which works with Ctx

Required methods

fn collect_js<B>(self, ctx: Ctx<'js>) -> Result<B> where
    B: FromIteratorJs<'js, A>, 
[src]

Loading content...

Implementors

impl<'js, T, A> IteratorJs<'js, A> for T where
    T: Iterator<Item = A>, 
[src]

Loading content...