pub struct ShapePair {
pub p_type: ShapeDefinition,
pub count_or_col: usize,
}
Expand description
A shape pair for stronger compression and decoding
Fields§
§p_type: ShapeDefinition
The type (0 - array, 1 - object, 2 - value)
count_or_col: usize
the length if object or array; or the column to read from
Implementations§
Trait Implementations§
impl StructuralPartialEq for ShapePair
Auto Trait Implementations§
impl Freeze for ShapePair
impl RefUnwindSafe for ShapePair
impl Send for ShapePair
impl Sync for ShapePair
impl Unpin for ShapePair
impl UnwindSafe for ShapePair
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