pub struct DictionaryPage {
pub buf: Bytes,
pub num_values: usize,
pub is_sorted: bool,
}Expand description
The encoded data for a dictionary page
Fields§
§buf: Bytes§num_values: usize§is_sorted: boolAuto Trait Implementations§
impl !Freeze for DictionaryPage
impl RefUnwindSafe for DictionaryPage
impl Send for DictionaryPage
impl Sync for DictionaryPage
impl Unpin for DictionaryPage
impl UnsafeUnpin for DictionaryPage
impl UnwindSafe for DictionaryPage
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