arrow_json::reader::tape

Struct Tape

Source
pub struct Tape<'a> {
    elements: &'a [TapeElement],
    strings: &'a str,
    string_offsets: &'a [usize],
    num_rows: usize,
}
Expand description

A decoded JSON tape

String and numeric data is stored alongside an array of TapeElement

The first element is always TapeElement::Null

This approach to decoding JSON is inspired by simdjson

Fields§

§elements: &'a [TapeElement]§strings: &'a str§string_offsets: &'a [usize]§num_rows: usize

Implementations§

Source§

impl<'a> Tape<'a>

Source

pub fn get_string(&self, idx: u32) -> &'a str

Returns the string for the given string index

Source

pub fn get(&self, idx: u32) -> TapeElement

Returns the tape element at idx

Source

pub fn next(&self, cur_idx: u32, expected: &str) -> Result<u32, ArrowError>

Returns the index of the next field at the same level as cur_idx

Return an error if cur_idx is not the start of a field

Source

pub fn num_rows(&self) -> usize

Returns the number of rows

Source

fn serialize(&self, out: &mut String, idx: u32) -> u32

Serialize the tape element at index idx to out returning the next field index

Source

pub fn error(&self, idx: u32, expected: &str) -> ArrowError

Returns an error reading index idx

Trait Implementations§

Source§

impl<'a> Debug for Tape<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Tape<'a>

§

impl<'a> RefUnwindSafe for Tape<'a>

§

impl<'a> Send for Tape<'a>

§

impl<'a> Sync for Tape<'a>

§

impl<'a> Unpin for Tape<'a>

§

impl<'a> UnwindSafe for Tape<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,