vortex_file/read/layouts/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod chunked;
mod columnar;
mod flat;
mod inline_dtype;
#[cfg(test)]
mod test_read;

pub use chunked::ChunkedLayout;
pub use columnar::ColumnarLayout;
pub use flat::FlatLayout;
pub use inline_dtype::InlineDTypeLayout;

use crate::LayoutReader;

type RangedLayoutReader = ((usize, usize), Box<dyn LayoutReader>);