Enum orc_rust::arrow_reader::Decoder  
source · pub enum Decoder {
    Int64(NullableIterator<i64>),
    Int32(NullableIterator<i64>),
    Int16(NullableIterator<i64>),
    Boolean(NullableIterator<bool>),
    Float32(NullableIterator<f32>),
    Float64(NullableIterator<f64>),
    Timestamp(NullableIterator<NaiveDateTime>),
    Date(NullableIterator<NaiveDate>),
    String(StringDecoder),
    Binary(NullableIterator<Vec<u8>>),
}Variants§
Int64(NullableIterator<i64>)
Int32(NullableIterator<i64>)
Int16(NullableIterator<i64>)
Boolean(NullableIterator<bool>)
Float32(NullableIterator<f32>)
Float64(NullableIterator<f64>)
Timestamp(NullableIterator<NaiveDateTime>)
Date(NullableIterator<NaiveDate>)
String(StringDecoder)
Binary(NullableIterator<Vec<u8>>)
Auto Trait Implementations§
impl !RefUnwindSafe for Decoder
impl Send for Decoder
impl !Sync for Decoder
impl Unpin for Decoder
impl !UnwindSafe for Decoder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more