js-sy: Add a doc comment for js_sys::IntoIter

This commit is contained in:
Nick Fitzgerald 2018-09-25 11:21:27 -07:00
parent dc22965e71
commit 6edb871c36

View File

@ -1184,6 +1184,9 @@ pub struct Iter<'a> {
state: IterState,
}
/// An iterator over the JS `Symbol.iterator` iteration protocol.
///
/// Use the `IntoIterator for js_sys::Iterator` implementation to create this.
pub struct IntoIter {
js: Iterator,
state: IterState,