Struct orc_rust::arrow_reader::column::Column
source · pub struct Column { /* private fields */ }
Implementations§
source§impl Column
impl Column
pub fn new( name: &str, data_type: &DataType, footer: &Arc<StripeFooter>, number_of_rows: u64 ) -> Self
pub fn dictionary_size(&self) -> usize
pub fn encoding(&self) -> ColumnEncoding
pub fn data_type(&self) -> &DataType
pub fn name(&self) -> &str
pub fn column_id(&self) -> u32
pub fn children(&self) -> Vec<Column>
pub fn read_stream<R: ChunkReader>( reader: &mut R, start: u64, length: u64 ) -> Result<Bytes>
pub async fn read_stream_async<R: AsyncChunkReader>( reader: &mut R, start: u64, length: u64 ) -> Result<Bytes>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Column
impl RefUnwindSafe for Column
impl Send for Column
impl Sync for Column
impl Unpin for Column
impl UnwindSafe for Column
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