Skip to main content

ReaderState

Enum ReaderState 

Source
enum ReaderState<R> {
    InvalidState,
    Idle {
        reader: R,
    },
    FetchingData {
        future: BoxFuture<'static, Result<(R, Bytes), AvroError>>,
        next_behaviour: FetchNextBehaviour,
    },
    DecodingBlock {
        data: Bytes,
        reader: R,
    },
    ReadingBatches {
        data: Bytes,
        block_data: Bytes,
        remaining_in_block: usize,
        reader: R,
    },
    Flushing,
    Finished,
}

Variants§

§

InvalidState

Intermediate state to fix ownership issues

§

Idle

Initial state, fetch initial range

Fields

§reader: R
§

FetchingData

Fetching data from the reader

Fields

§future: BoxFuture<'static, Result<(R, Bytes), AvroError>>
§next_behaviour: FetchNextBehaviour
§

DecodingBlock

Decode a block in a loop until completion

Fields

§data: Bytes
§reader: R
§

ReadingBatches

Output batches from a decoded block

Fields

§data: Bytes
§block_data: Bytes
§remaining_in_block: usize
§reader: R
§

Flushing

Successfully finished reading file contents; drain any remaining buffered records from the decoder into (possibly partial) output batches.

§

Finished

Done, flush decoder and return

Auto Trait Implementations§

§

impl<R> !Freeze for ReaderState<R>

§

impl<R> !RefUnwindSafe for ReaderState<R>

§

impl<R> Send for ReaderState<R>
where R: Send,

§

impl<R> !Sync for ReaderState<R>

§

impl<R> Unpin for ReaderState<R>
where R: Unpin,

§

impl<R> !UnwindSafe for ReaderState<R>

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> Same for T

Source§

type Output = T

Should always be Self
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<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V