[][src]Struct binjs_io::binjs_json::read::Decoder

pub struct Decoder<R: Read> { /* fields omitted */ }

Methods

impl<R: Read> Decoder<R>[src]

pub fn new(source: R) -> Result<Self, TokenReaderError>[src]

Read JSON from source, parse it, and convert it to tokens.

pub fn next_type(&self) -> NextType[src]

Returns which method to call to get the next item.

The consumer is supposed to call this and branch to each TokenReader::*_at method call.

pub fn get_path(&self) -> Path[src]

Returns then path to the current context. Should be called before calling *_at functions.

Supposed to be fed to {TokenReader,TokenWriter}::*_at methods.

pub fn current_tagged_tuple_info(&self) -> (InterfaceName, Rc<Box<[FieldName]>>)[src]

Returns the current tagged tuple context's interface name and field names.

Supposed to be fed to TokenWriter::exit_tagged_tuple_at.

This method should be called before TokenReader::exit_tagged_tuple_at for the corresponding tagged tuple.

Trait Implementations

impl<R: Read> FileStructurePrinter for Decoder<R>[src]

impl<R: Read> TokenReader for Decoder<R>[src]

Auto Trait Implementations

impl<R> !RefUnwindSafe for Decoder<R>

impl<R> !Send for Decoder<R>

impl<R> !Sync for Decoder<R>

impl<R> Unpin for Decoder<R> where
    R: Unpin

impl<R> !UnwindSafe for Decoder<R>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]