You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Possibly, this is just a single function on StreamReader, like this:
traitStreamReader{/// Materializes only the current value from the specified `reader`. pubfnread_element<'a>(&mutself) -> IonResult<Option<OwnedElement>>{
...}}
This would ultimately invoke this function to actually perform the materialization.
The text was updated successfully, but these errors were encountered:
#485 does not actually satisfy this request. The none of the ElementReader functions introduced there read the current value of the StreamReader. The closest one, StreamReader::read_next_element advances to the next element and then reads. I need one that just reads the current element.
Possibly, this is just a single function on
StreamReader
, like this:This would ultimately invoke this function to actually perform the materialization.
The text was updated successfully, but these errors were encountered: