[−][src]Struct binjs_io::multipart::TreeTokenReader
Methods
impl TreeTokenReader[src]
Trait Implementations
impl FileStructurePrinter for TreeTokenReader[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 TokenReader for TreeTokenReader[src]
fn poison(&mut self)[src]
fn string_at(
&mut self,
_path: &Path
) -> Result<Option<SharedString>, TokenReaderError>[src]
&mut self,
_path: &Path
) -> Result<Option<SharedString>, TokenReaderError>
fn float_at(&mut self, _path: &Path) -> Result<Option<f64>, TokenReaderError>[src]
Read a single f64. Note that all numbers are f64.
fn unsigned_long_at(&mut self, _path: &Path) -> Result<u32, TokenReaderError>[src]
Read a single u32.
fn bool_at(&mut self, _path: &Path) -> Result<Option<bool>, TokenReaderError>[src]
Read a single bool.
fn offset_at(&mut self, _path: &Path) -> Result<u32, TokenReaderError>[src]
Read a single u32.
fn enter_list_at(&mut self, _path: &Path) -> Result<u32, TokenReaderError>[src]
Start reading a list.
Returns an extractor for that list and the number of elements
in the list. Before dropping the sub-extractor, callers MUST
either reach the end of the list or call skip().
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>
Start reading a tagged tuple.
Returns the tag name, None for fields and a
sub-extractor dedicated
to that tuple. The sub-extractor MUST be consumed entirely.
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 exit_list_at(&mut self, _path: &Path) -> Result<(), TokenReaderError>[src]
fn exit_tagged_tuple_at(&mut self, _path: &Path) -> Result<(), TokenReaderError>[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 !RefUnwindSafe for TreeTokenReader
impl !Send for TreeTokenReader
impl !Sync for TreeTokenReader
impl Unpin for TreeTokenReader
impl !UnwindSafe for TreeTokenReader
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> DowncastSync for T where
T: Send + Sync + Any, [src]
T: Send + Sync + Any,
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>,