lance_encoding::decoder

Trait DecodeArrayTask

Source
pub trait DecodeArrayTask: Send {
    // Required method
    fn decode(self: Box<Self>) -> Result<ArrayRef>;
}
Expand description

A trait for tasks that decode data into an Arrow array

Required Methods§

Source

fn decode(self: Box<Self>) -> Result<ArrayRef>

Decodes the data into an Arrow array

Implementations on Foreign Types§

Source§

impl DecodeArrayTask for Box<dyn StructuralDecodeArrayTask>

Source§

fn decode(self: Box<Self>) -> Result<ArrayRef>

Implementors§