jsonit 0.2.0

Parse Json Items using iterators
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# JsonIT (Json Iterator)

If you want to read json items as a stream under a prefixed array in a json file

```rs
pub fn stream_read_items_at<T>(iterator: impl Iterator<Item = String> + 'static, prefix: String) -> impl Iterator<Item = serde_json::Result<T>>
where
    T: DeserializeOwned,

```

Should work like python ijson