pub trait IteratorJs<'js, A> {
    // Required method
    fn collect_js<B>(self, ctx: &Ctx<'js>) -> Result<B>
       where B: FromIteratorJs<'js, A>;
}Required Methods§
fn collect_js<B>(self, ctx: &Ctx<'js>) -> Result<B>where
    B: FromIteratorJs<'js, A>,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.