pub trait FromIteratorJs<'js, A>: Sized {
    type Item;

    fn from_iter_js<T>(ctx: Ctx<'js>, iter: T) -> Result<Self>
    where
        T: IntoIterator<Item = A>
; }
Expand description

The Rust’s FromIterator trait to use with Ctx

Required Associated Types

Required Methods

Implementors