[][src]Struct data_reader::reader::RawReaderResults

pub struct RawReaderResults {
    pub num_fields: usize,
    pub num_lines: usize,
    pub results: Vec<u8>,
    pub index: Vec<usize>,
}

A structure that contains all of the raw results. It tells us the number of fields we had along with the number of lines that we read. Results contains all of the data that was read in from the file in its raw u8 format. The index field contains the starting index for each field that was read in.

Fields

num_fields: usizenum_lines: usizeresults: Vec<u8>index: Vec<usize>

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.