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

The Rust’s Iterator trait extension which works with Ctx

Required Methods§

source

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

Implementors§

source§

impl<'js, T, A> IteratorJs<'js, A> for Twhere T: Iterator<Item = A>,