[−][src]Struct binjs_io::binjs_json::read::Decoder
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]
fn enable_file_structure_print(&mut self)
[src]
fn disable_file_structure_print(&mut self)
[src]
fn is_file_structure_print_enabled(&mut self) -> bool
[src]
fn prepare_file_structure_column(&mut self)
[src]
fn newline_for_file_structure_print(&mut self)
[src]
impl<R: Read> TokenReader for Decoder<R>
[src]
fn string_at(
&mut self,
_path: &Path
) -> Result<Option<SharedString>, TokenReaderError>
[src]
&mut self,
_path: &Path
) -> Result<Option<SharedString>, TokenReaderError>
fn string_enum_at(
&mut self,
_path: &Path
) -> Result<SharedString, TokenReaderError>
[src]
&mut self,
_path: &Path
) -> Result<SharedString, TokenReaderError>
fn identifier_name_at(
&mut self,
_path: &Path
) -> Result<Option<IdentifierName>, TokenReaderError>
[src]
&mut self,
_path: &Path
) -> Result<Option<IdentifierName>, TokenReaderError>
fn property_key_at(
&mut self,
_path: &Path
) -> Result<Option<PropertyKey>, TokenReaderError>
[src]
&mut self,
_path: &Path
) -> Result<Option<PropertyKey>, TokenReaderError>
fn float_at(&mut self, _path: &Path) -> Result<Option<f64>, TokenReaderError>
[src]
fn unsigned_long_at(&mut self, _path: &Path) -> Result<u32, TokenReaderError>
[src]
fn bool_at(&mut self, _path: &Path) -> Result<Option<bool>, TokenReaderError>
[src]
fn offset_at(&mut self, __path: &Path) -> Result<u32, TokenReaderError>
[src]
fn enter_list_at(&mut self, _path: &Path) -> Result<u32, TokenReaderError>
[src]
fn exit_list_at(&mut self, _path: &Path) -> Result<(), TokenReaderError>
[src]
fn enter_tagged_tuple_at(
&mut self,
_path: &Path
) -> Result<(InterfaceName, Option<Rc<Box<[FieldName]>>>), TokenReaderError>
[src]
&mut self,
_path: &Path
) -> Result<(InterfaceName, Option<Rc<Box<[FieldName]>>>), TokenReaderError>
fn exit_tagged_tuple_at(&mut self, _path: &Path) -> Result<(), TokenReaderError>
[src]
fn poison(&mut self)
[src]
fn enter_scoped_dictionary_at(
&mut self,
_name: &SharedString,
_path: &Path
) -> Result<(), TokenReaderError>
[src]
&mut self,
_name: &SharedString,
_path: &Path
) -> Result<(), TokenReaderError>
fn exit_scoped_dictionary_at(
&mut self,
_name: &SharedString,
_path: &Path
) -> Result<(), TokenReaderError>
[src]
&mut self,
_name: &SharedString,
_path: &Path
) -> Result<(), TokenReaderError>
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,
R: Unpin,
impl<R> !UnwindSafe for Decoder<R>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Downcast for T where
T: Any,
[src]
T: Any,
fn into_any(self: Box<T>) -> Box<dyn Any + 'static>
[src]
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
[src]
fn as_any(&self) -> &(dyn Any + 'static)
[src]
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,