pub fn from_reader_seed_with_limit<T, V>(
    seed: T,
    reader: impl Read,
    limit: usize
) -> Result<V>
where for<'a> T: DeserializeSeed<'a, Value = V>,
Expand description

Same as from_reader_seed but use limit as max container depth instead of MAX_CONTAINER_DEPTHNote thatlimit` has to be lower than MAX_CONTAINER_DEPTH