[go: up one dir, main page]

pub unsafe fn get_many_unchecked<'de, Input>(
    json: Input,
    tree: &PointerTree
) -> Result<Vec<LazyValue<'de>>>
where Input: JsonInput<'de>,
Expand description

get_many_unchecked returns the raw value from the PointerTree. The result is a Vec. And the order of the result is the same as the order of the tree. If the tree is empty, it will return the whole json.

Safety

The JSON must be valid and well-formed, otherwise it may return unexpected result.