ArrayDecoder

Trait ArrayDecoder 

Source
trait ArrayDecoder: Send {
    // Required method
    fn decode(
        &mut self,
        tape: &Tape<'_>,
        pos: &[u32],
    ) -> Result<ArrayData, ArrowError>;
}

Required Methods§

Source

fn decode( &mut self, tape: &Tape<'_>, pos: &[u32], ) -> Result<ArrayData, ArrowError>

Decode elements from tape starting at the indexes contained in pos

Implementors§