Expand description
A lazy type to representing a unparsed raw JSON text for lazy operators.
Structs§
- Array
Json Iter - A lazied iterator for JSON array text. It will parse the JSON when iterating.
- Lazy
Array - Lazy
Object - Lazy
Value - LazyValue wrappers a unparsed raw JSON text. It is borrowed from the origin JSON text.
- Object
Json Iter - A lazied iterator for JSON object text. It will parse the JSON when iterating.
- Owned
Lazy Value - OwnedLazyValue wrappers a unparsed raw JSON text. It is owned and support
Get, Set
Functions§
- get
- Gets a field from a
path. And return it as aResult<LazyValue>. - get_
from_ bytes - Gets a field from a
path. And return it as aResult<LazyValue>. - get_
from_ ⚠bytes_ unchecked - Gets a field from a
path. And return it as aResult<LazyValue>. - get_
from_ faststr - Gets a field from a
path. And return it as aResult<LazyValue>. - get_
from_ ⚠faststr_ unchecked - Gets a field from a
path. And return it as aResult<LazyValue>. - get_
from_ slice - Gets a field from a
path. And return it as aResult<LazyValue>. - get_
from_ ⚠slice_ unchecked - Gets a field from a
path. And return it as aResult<LazyValue>. - get_
from_ str - Gets a field from a
path. And return it as aResult<LazyValue>. - get_
from_ ⚠str_ unchecked - Gets a field from a
path. And return it as aResult<LazyValue>. - get_
many - get_many returns multiple fields from the
PointerTree. - get_
many_ ⚠unchecked - get_many returns multiple fields from the
PointerTree. - get_
unchecked ⚠ - Gets a field from a
path. And return it as aResult<LazyValue>. - to_
array_ iter - Traverse the JSON array text through a lazy iterator. The JSON parsing will doing when iterating.
- to_
array_ ⚠iter_ unchecked - Traverse the JSON text through a lazy object iterator. The JSON parsing will doing when iterating.
- to_
object_ iter - Traverse the JSON object text through a lazy iterator. The JSON parsing will doing when iterating.
- to_
object_ ⚠iter_ unchecked - Traverse the JSON text through a lazy object iterator. The JSON parsing will doing when iterating.