pub struct DictPage {
pub buffer: Vec<u8>,
pub num_values: usize,
pub is_sorted: bool,
}
Expand description
An uncompressed, encoded dictionary page.
Fields§
§buffer: Vec<u8>
§num_values: usize
§is_sorted: bool
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DictPage
impl RefUnwindSafe for DictPage
impl Send for DictPage
impl Sync for DictPage
impl Unpin for DictPage
impl UnwindSafe for DictPage
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