Struct lance_encoding::decoder::ColumnInfo
source · pub struct ColumnInfo {
pub page_infos: Vec<Arc<PageInfo>>,
pub buffer_offsets: Vec<u64>,
}Expand description
Metadata describing a column in a file
This is typically created by reading the metadata section of a Lance file
Fields§
§page_infos: Vec<Arc<PageInfo>>The metadata for each page in the column
buffer_offsets: Vec<u64>Implementations§
Auto Trait Implementations§
impl Freeze for ColumnInfo
impl RefUnwindSafe for ColumnInfo
impl Send for ColumnInfo
impl Sync for ColumnInfo
impl Unpin for ColumnInfo
impl UnwindSafe for ColumnInfo
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