rust: pub export the VectorIter type (#5736)

This commit is contained in:
jean-airoldie
2020-03-09 20:25:03 -04:00
committed by GitHub
parent 89b6183ee9
commit 95a21327fc
2 changed files with 2 additions and 1 deletions

View File

@@ -154,6 +154,7 @@ impl<'a, T: Follow<'a> + 'a> Follow<'a> for Vector<'a, T> {
}
}
/// An iterator over a `Vector`.
#[derive(Debug)]
pub struct VectorIter<'a, T: 'a> {
buf: &'a [u8],