pub trait IteratorJs<'js, A> {
    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

Implementors